hi , consider the following example. i have one application and one component. from the application, i am going to pass a value to the component.
Component1.mxml ========================================== <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" width="400" height="300"> <mx:Script> <![CDATA[ [Bindable] public var labelText:String = new String(); ]]> </mx:Script> <mx:Label text="{labelText}"/> </mx:VBox> Application.mxml =========================================== ..................... <comp:Component1 labelText="From application"> ..................... try this and let me know. On Oct 28, 2:06 pm, Vasu <[EMAIL PROTECTED]> wrote: > Hi Friends, > I,m Srinivas.I'm new to Flex.I have one doubt regarding > "How to pass values from one screen to another screen i.e one > application to another application (or) one component to another > component". > > Thanks in advance, > Vasu. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/flex_india?hl=en -~----------~----~----~----~------~----~------~--~---

