Heya … I am trying to display my flashvars in my flash movie … and dont know the actionscript code to call the vars from the html page.
Thus far I have in my html (in the appropriate place - im not displaying all the code)
var flashvars = {};
flashvars.name1 = "hello";
swfobject.embedSWF("fvs.swf", "flashMovie", "100%", "100%", "9.0.0","expressInstall.swf","false",flashvars);
so now i have that sorted … how do i pull out “hello” into my txt box?! I thought
my_txt.text = flashvars.name1;
would do it … but alas, non!
any help out there in the world - I cant find it in the SO documentation regarding the actionscript side of the code…
thanks:rd: