vote up 0 vote down star

I've got an AS3 SWF that I'm going to be loading other SWFs into. These child SWFs all take a single parameter on the URL. I can't seem to get it working when loading an AS2 child, and it needs to be able to handle both.

so I have

var request:URLRequest = new URLRequest();
var loader:URLLoader = new URLLoader();

request.url = "http://domain/as2.swf?param=foo";
loader.load(request);
// etc on to the eventListeners, addChild, etc

When the as2 SWF gets loaded, it can't see the parameter I've passed to it. It's looking for _root.param. Am I doing this wrong or am I attempting the impossible?

EDIT: I should add that I can load a SWF with those URL params from an AS2 loader and it works just fine.

flag

4 Answers

vote up 0 vote down check

It's not trivial to communicate between AS2 and AS3 since they run in different virtual machines. Check this http://www.gskinner.com/blog/archives/2007/07/swfbridge_easie.html for some hints.

Edit: If you cannot change the loaded as2 content your only options is creating a 'wrapper' as2 loader that uses the linked example above to communicate with the as3 and interfaces with the loaded as2 content using _root.varname This is not pretty but it might just work.

link|flag
unfortunately, that's not an option since I mostly wont have control over authoring the SWFs that are being loaded (banner ads). – nerdabilly Jan 26 at 23:25
Hmm, I guess in that case you are out of luck -- Best I can think of is creating an extra 'wrapper' as2 loader that uses the linked example above to communicate with the as3 and interfaces with the loaded as2 content using _root.varname – Simon Groenewolt Jan 27 at 10:07
thats actually what I ended up doing! thanks. – nerdabilly Jan 27 at 22:52
vote up -3 vote down

You are doing it wrong.

"http://domain/as2.swf?param=foo"

Is a request for the file named as2.swf, on the server named domain. Any ?param=foo parameters that are part of that http request are lost when the request is complete. If the server needed to do something according to these variables, it would, but you are asking a .swf file to detect these variables, that's just silly.

Put a variable in your Global object (Global namespace) for the flash player, then when the as2 .swf is loaded into that flash player it will have access to the variable you set in your Global object.

I am not proficient in as2, but in as3, the Global object can be accessed with the this keyword, at the package level (probly is the same for as2, just dont worry about setting it at a package level).

link|flag
If I'm not completely mistaken all parameters are available in the _root in as2. – Simon Groenewolt Jan 26 at 22:12
Also, as far as I know: 'this' refers to the current object, not to a/the Global object. – Simon Groenewolt Jan 26 at 22:15
this is the current object when you are in global scope. – ForYourOwnGood Jan 26 at 22:19
both as2 and as3 SWFs can receive vars passed to them in the URL like this. in AS2 it's done with _root.varName and in AS3 it's with LoaderInfo. – nerdabilly Jan 26 at 23:24
vote up 0 vote down

When you're loading a SWF, shouldn't you use the Loader class instead of the URLLoader?

I don't think the SWF actually runs at all when loaded with the URLLoader class.

link|flag
Doh. I am using the loader. I typed this question in a hurry. – nerdabilly Jan 26 at 23:27
vote up 0 vote down

It might be worth trying to assign the variables dynamically after the SWF has loaded but before you add it to the stage. Ie.

loader.contentLoaderInfo.addEventListener(Event.COMPLETE, movieLoaded);

function movieLoadedHandler(event : Event) : void
{
    var loaderInfo : LoaderInfo = event.target as LoaderInfo;
    var clip : DisplayObject = loaderInfo.content;

    for each(var prop in varsToTransfer)
    {
        clip[prop] = varsToTransfer[prop];
    }

    // add to parent
}

Let me know how that goes.

link|flag
tried that and unfortunately it was either "prop does not exist" errors or nothing would happen at all. I ended up making a wrapper SWF. – nerdabilly Jan 27 at 22:53

Your Answer

Get an OpenID
or

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