Click here to Skip to main content
15,889,877 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Sir,

I am navies programmer for flex mobile project. I want to some help for you.

-i want to send temp value from home.mxml to details.mxml. but i unable to to resolve how to it.
-have any ideas please help me.
Thanks
Posted
Comments
Sandeep Mewara 28-Apr-11 5:13am    
Tried anything so far?

1 solution

Pass the value through navigator function:

Example:
navigator.pushView(details ,tempVal);


To get tempVal in details.mxml, use the following...
C#
var gettempVal:String;
 gettempVal = data.toString();


I hope this may help you....
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900