[flexcoders] Re: Trying to pass a value to the mxml/swf file from java(android).How?

2011-09-27 Thread Shunmuga
in advance > Saurabh > > --- In flexcoders@yahoogroups.com, "Shunmuga" wrote: > > > > you can pass the arguments to swf file by using Flashvars: > > FlashVars="arg1=val&arg2=val2" > > > > string htmlUrl = " > name=\"movie\&q

[flexcoders] Re: Trying to pass a value to the mxml/swf file from java(android).How?

2011-09-22 Thread Shunmuga
you can pass the arguments to swf file by using Flashvars: FlashVars="arg1=val&arg2=val2" string htmlUrl = " "; In MXML file: var flashVarsObj:Object = Application.application.parameters as Object; arg1 = flashVarsObj.arg1; arg2 = flashVarsObj.arg2; Thanks, Rohini. --- In flexcoders@yahoogr