AS3, loading in a SWF as a custom type

2019-06-25 13:11发布

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?

3条回答
再贱就再见
2楼-- · 2019-06-25 13:40

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.

查看更多
【Aperson】
3楼-- · 2019-06-25 13:45

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");
}
查看更多
我命由我不由天
4楼-- · 2019-06-25 14:02

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!

查看更多
登录 后发表回答