12/10/2010 12:38:04 AM
Title:
swf loader control
how to access the variable or object at the external application through the swf loader???
for ur information :-
http://livedocs.adobe.com/flex/3/html/help.html?content=controls_15.html
http://www.java2s.com/Code/Flex/Container/UseSWFLoadercontroltoloaditintoanotherFlexapplication.htm
in my application this below line is not working :( :( :( so help me pls.
Alert.show(loadedSM.application["varOne"].text);
varOne is the instance for String (ie) varOne:String = "I was just updated."; in external application
thxs in advance :)
12/10/2010 2:25:29 AM
if varOne is a string then why are you accessing the text property , directly access its value like this
Alert.show(loadedSM.application["varOne"]);
12/10/2010 2:34:55 AM
thxs for ur reply :):)
hm..ya i tried tat. but i couldnt able to get the string value :( :( :(