I'm trying to send variables from my WebPage to a Flash object. But it doesn't work.
Here is the way I call the animation inside the webpage :
<object type="application/x-shockwave-flash" data="/flash/Reintegrate.swf" width="1150" height="800" value="idu=Salut"></object>
Here is my code in AS3, LblTst shows nothing :
var userid:String = loaderInfo.parameters.idu;
LblTst.text = userid;
Any idea ?