passing paramaters to a swf via Loader - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:52:36Z http://stackoverflow.com/feeds/question/426143 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/426143/passing-paramaters-to-a-swf-via-loader 0 passing paramaters to a swf via Loader Jeff Winkworth 2009-01-08T21:49:56Z 2009-07-22T14:30:32Z <p>I have a swf (child.swf) that I wish to load into another (parent.swf). I wish to pass a parameter to child.swf through the loader I am using. <strong>Note that I am not trying to pass FlashVars that parent.swf already has</strong>, but rather I am trying to simply load a swf through another swf with custom arguments. </p> <p>Any ideas?</p> http://stackoverflow.com/questions/426143/passing-paramaters-to-a-swf-via-loader/426323#426323 2 Answer by spender for passing paramaters to a swf via Loader spender 2009-01-08T22:39:31Z 2009-01-08T22:39:31Z <p>In the child swf, write a function (init in the code below) to receive any params. When the Loader signals Event.COMPLETE, call the function from parent.swf as follows:</p> <pre><code>var request:URLRequest = new URLRequest("child.swf"); var loader:Loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadHandler); loader.load(request); function loadHandler(event:Event):void { var childSwf:Object = event.target.content; childSwf.init( PARAMS ); } </code></pre> http://stackoverflow.com/questions/426143/passing-paramaters-to-a-swf-via-loader/1165705#1165705 0 Answer by Nimuse for passing paramaters to a swf via Loader Nimuse 2009-07-22T14:30:32Z 2009-07-22T14:30:32Z <p>Works well, but now can't seem to get the recieved PARAMS var into a global variable to manipulate/test -</p> <p>public function init(PARAMS){</p> <pre><code> var thisPARAMS:String = PARAMS thisplayerCall=thisPARAMS; trace("thisplayerCall:"+thisplayerCall);//outputs PARENT variable } </code></pre> <p>//MAIN CONSTRUCTOR public function final_trial():void { trace("thisplayerCall:"+thisplayerCall);//outputs null</p> <pre><code> } </code></pre> <p>Am I missing something really obvious here??</p>