vote up 0 vote down star

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. Note that I am not trying to pass FlashVars that parent.swf already has, but rather I am trying to simply load a swf through another swf with custom arguments.

Any ideas?

flag

75% accept rate

2 Answers

vote up 2 vote down check

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:

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 );
}
link|flag
worked perfectly. Thanks! – Jeff Winkworth Jan 9 at 13:48
vote up 0 vote down

Works well, but now can't seem to get the recieved PARAMS var into a global variable to manipulate/test -

public function init(PARAMS){

		var thisPARAMS:String = PARAMS
		thisplayerCall=thisPARAMS;
		trace("thisplayerCall:"+thisplayerCall);//outputs PARENT variable

	}

//MAIN CONSTRUCTOR public function final_trial():void { trace("thisplayerCall:"+thisplayerCall);//outputs null

	}

Am I missing something really obvious here??

link|flag
if final_trial() is the child.swf's constructor, it would be called before init() was. That would be why you see null. – Jeff Winkworth Jul 23 at 15:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.