[flexcoders] No Complete Event for Image via Embed

2005-06-19 Thread JesterXL
If I embed an image, I do not get a complete event fired from an Image, nor Loader component. If I merely load the image dynamically, it works fine; I get my event. Is this known, and if so, any workarounds? I've tried checking for my internal copy of contentPath to see if it:

RE: [flexcoders] No Complete Event for Image via Embed

2005-06-19 Thread Alistair McLeod
Hi Jesse, This is as expected; events are dispatched at runtime, but embedded images are included at compile time. Put those two together and you'll see why there's no complete event for embedded images. You could use the creationComplete event of the Image control. Cheers, Ali -Original

Re: [flexcoders] No Complete Event for Image via Embed

2005-06-19 Thread JesterXL
No it's not; if a load content, it should fire an event that it's done, even if is immediate. I don't get my complete event in Flash either; I'd still think you'd get a complete event. Why? Because the Loader/Image components assume you know which type of content you are loading, yet are

[flexcoders] Populating Tree nodes with ViewStack containers

2005-06-19 Thread Ghislain Simard
Hi, How to generate dynamically the nodes in a Tree using the label attributes from viewStack containers' labels? mx:Tree dataProvider=myViewStacks/ mx:ViewStack id=myViewStacks mx:Panel label=Panel 1/ mx:Panel label=Panel 1/ mx:Panel label=Panel 1/ /mx:ViewStack Thanks Yahoo!

[flexcoders] Populating Tree nodes with ViewStack containers

2005-06-19 Thread Ghislain Simard
Hi, How to generate dynamically the nodes in a Tree using the label attributes from viewStack containers' labels? mx:Tree dataProvider=myViewStacks/ mx:ViewStack id=myViewStacks mx:Panel label=Panel 1/ mx:Panel label=Panel 1/ mx:Panel label=Panel 1/ /mx:ViewStack Thanks Yahoo!

Re: [flexcoders] Populating Tree nodes with ViewStack containers

2005-06-19 Thread Manish Jethani
On 6/19/05, Ghislain Simard [EMAIL PROTECTED] wrote: How to generate dynamically the nodes in a Tree using the label attributes from viewStack containers' labels? mx:Tree dataProvider=myViewStacks/ mx:ViewStack id=myViewStacks [...] So you're looking for something like the following,

[flexcoders] 'fade effect' question

2005-06-19 Thread sanjayd
folks, any idea why the label 'fading text' refuses to fade out ? Thanks in advance. mx:Effect mx:Fade name=Fade alphaFrom=100 alphaTo=30 duration=2500/ /mx:Effect mx:VBox width=100% height=100% mx:Box direction=horizontal borderStyle=solid marginTop=5

RE: [flexcoders] 'fade effect' question

2005-06-19 Thread Stephen Gilson
From the doc: Note: To use the Fade effect with text, you must use an embedded font, not a device font. For more information, see Using Styles and Fonts. You can read more here: http://livedocs.macromedia.com/flex/15/flex_docs_en/0590.htm Stephen -Original Message- From:

[flexcoders] Datatip and combobox

2005-06-19 Thread Clint Modien
couldn't get this 2 work... anyone been able to set the showDataTips on the dropdown in a combobox? here's what i tried ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml mx:ComboBox id=testComboBox creationComplete=testComboBox_creationComplete()

RE: [flexcoders] Binding Internally?

2005-06-19 Thread Matt Chotin
Well you certainly can put a ChangeEvent if its a var, but then the update will only happen when that change event fires (which you are responsible for dispatching unless you pick an event that is already dispatched). Well do the automatic change event thing if it is declared as a

RE: [flexcoders] Differences in Scope - Flash MX versus Flex

2005-06-19 Thread Matt Chotin
Everything should be isolated, you should be able to re-use variable and function names. Im not sure why youre having problems with the RemoteObject, as I said before weve seen problems with it and popups and maybe theyre related. Matt From: flexcoders@yahoogroups.com

[flexcoders] Re: 'fade effect' question

2005-06-19 Thread sanjayd
Thanks Stephen, that worked...this is what I did: 1. copied LucidaSansRegular.ttf file from jre\lib\fonts directory to the directory holding my mxml file 2. added this to my mxml file: mx:Style @font-face { fontFamily:myEmbeddedFont; src:url(LucidaSansRegular.ttf); } /mx:Style 3.

RE: [flexcoders] CFMX7, Flex 1.5, IIS 6

2005-06-19 Thread Tim Whitehead
In the Menu on the left side of the CFMX Administrator there was one item that said Enterprise Manager Instance Manager Cluster Manager Like there first image on that Article you gave me on merging them [http://www.flexauthority.com/articlesArchive/FlexCF7Merge.cfm] But now

Re: [flexcoders] 'fade effect' question

2005-06-19 Thread Peter Baird
Title: Re: [flexcoders] 'fade effect' question Fading on text only works on Embedded Fonts (not device Fonts). Youve got two options 1. Embed the font, 2. fake the fading out by actually fading in something over the text. -p On 6/19/05 4:01 PM, sanjayd [EMAIL PROTECTED] wrote: folks, any

[flexcoders] Re: 'fade effect' question

2005-06-19 Thread Andrew Spaulding
Try something like this: //in a script block function changeToGreen():Void { myLabel.setStyle( 'color', '0x008000' ); } //mxml //see the 'effectEnd' property mx:Label id=myLabel text=fading text showEffect=Fade effectEnd=changeToGreen() / Hope this helps! Andrew www.flexdaddy.com --- In

[flexcoders] Anyone successfully made a VAccordion Control?

2005-06-19 Thread Scott Barnes
Has anyone successfully made a VAccordion Control in FLEX? ie: http://www.spidaweb.com/screens.jpg style / vision of how an Accordion Panel could work. I'd rather not code it but if no1 else has, it looks like i will have to. -- Regards, Scott Barnes http://www.mossyblog.com