Dear Sir, As per your doubt I could understand that u have 2 mxml files : 1) first.mxml containing personal information and 2) second.mxml containing family information. and you have respective variables and you also have UserVO class.
ok good. the only thing u have to do is : create an object of UserVO in mxml files for eg: <first.mxml file> within script tag create an object like : [Bindable] private var objUserVO : UserVO = new UserVO(); and within a function u can just assign a value like this. objUserVO.name = txtInputName.text; objUserVO.gender = txtInputGender.text; and if u just want to check if it is been transfered then it will be and u can check by using Alert.show( "Name : " + objUserVO.name + "Gender " + objUserVO.gender); the same can be implemented for second.mxml I hope this is what u wanted. Thanks & Best Regards, Anuradha Yojeshkumar Thakor On Mon, Jun 7, 2010 at 5:29 PM, athi <[email protected]> wrote: > hi > > i have two mxml files. > > the first.mxml contains personal > and the second.mxml contains family information > > the first.mxml contains the text input > > name and gender > > the second.mxml contains the text input > > graduation and universityname > > both 4 variables to tranfer into actionscript userVO > > > i have create a actionscript class named userVO.as > > how it possible > > > anybody help me > advance thanks > > regards > athi > > -- > 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]<flex_india%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/flex_india?hl=en. > > -- 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.

