vote up 1 vote down star

Fundamental question here. Typically in AS3 you load in a SWF via the Loader, and what you get is some sort of pseudo MovieClip that is of type "Loader".

Is there any holy way under the sun to cast this loaded SWF to a custom type that extends MovieClip and not Loader, assuming the SWF was published with a base class of the custom type? Without data loss?

Alternatively, let's say you can't, can you even cast it from a custom type that extends Loader itself?

flag

77% accept rate

3 Answers

vote up 3 vote down check

You can do something like this:

Code in the stub swf:

package {

    import flash.display.MovieClip;

    public class Stub extends MovieClip implements IStub {

    	public function Stub() {
    		trace("Stub::ctor");
    	}

    	public 	function traceIt(value:String):void {
    		trace("Stub::traceIt " + value);
    	}
    }
}

I'm using an interface, but it's not strictly neccesary.

package {

    public interface IStub {

    	function traceIt(value:String):void;

    }
}

Code in the "main" swf.

var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.INIT,handleInit);
loader.load(new URLRequest("Stub.swf"));

function handleInit(e:Event):void {
    var stub:Stub = loader.content as Stub;
//	or, using an interface 
//	var stub:IStub = loader.content as IStub;
    stub.traceIt("testing");
}
link|flag
vote up 3 vote down

According to comments on this article in the LiveDocs, you can cast Loader.content to MovieClip and access it that way.

However, there are some restrictions. For example, the SWF itself must be an AS3 SWF file, and the SWF doing the loading and the SWF being loaded should share the same sandbox.

link|flag
vote up 0 vote down

Yeah, loader.content gives you access to whatever was loaded. You SHOULD be able to simply cast that as whatever you want.

Alternately, you have the option to extend Loader, which already extends DisplayObjectContainer so you'll have most of the functionality of a MovieClip to begin with. In that case, write it so that you can simply call MyCustomClass.load(swf here) and it should do what you need it to.

I hope that helps!

link|flag

Your Answer

Get an OpenID
or

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