passing paramaters to a swf via Loader - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T02:52:36Zhttp://stackoverflow.com/feeds/question/426143http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/426143/passing-paramaters-to-a-swf-via-loader0passing paramaters to a swf via LoaderJeff Winkworth2009-01-08T21:49:56Z2009-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#4263232Answer by spender for passing paramaters to a swf via Loaderspender2009-01-08T22:39:31Z2009-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#11657050Answer by Nimuse for passing paramaters to a swf via LoaderNimuse2009-07-22T14:30:32Z2009-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>