Actionscript 3加载外部swf铸造问题

时间:2010-08-26 23:43:12

标签: actionscript-3 flash-cs4 type-conversion loader applicationdomain

我在尝试在actionscript 3.0中加载外部定义的类时遇到了一些问题。我相信这是我对ApplicationDomain / LoaderContext类的理解的一个问题,但即使在浏览了文档和几个网页搜索后,我仍然卡住了。

基本上我想要做的是加载包含符号的swf,该符号是在调用swf和加载的swf之间共享的接口的实现。我可以很好地加载swf并实例化和执行方法,但只要我不尝试将它转换为共享接口类型。如果我尝试强制转换它,我会得到一个TypeError:错误#1034:类型强制失败:输入错误。

我怀疑这是因为当我加载新类时,flash将其识别为完全不同的类,因此异常。 documentation建议使用LoaderContext参数,并将applicationDomain设置为ApplicationDomain.currentDomain。

问题是这没有效果。无论我是将ApplicationDomain设置为currentDomain,null还是当前域的子项,我仍然会遇到类型强制失败错误。错误的::部分似乎表明我加载的类在不同的命名空间中或某些类似的,当我希望它与我的加载器位于相同的命名空间时。

代码:

import flash.display.Loader;
import flash.display.MovieClip;
import flash.events.Event;
import flash.net.URLRequest;
import flash.system.ApplicationDomain;
import flash.system.LoaderContext;

public class TestSkin extends MovieClip
{
    var mLoader:Loader;

    public function TestSkin()
    {
        super();
        startLoad("ExternalTest.swf");
    }

    private function startLoad(url:String):void
    {
        mLoader = new Loader();
        var mRequest:URLRequest = new URLRequest(url);
        var appDomain:ApplicationDomain = ApplicationDomain.currentDomain;
                    //Loading into different domains seems to have no effect
        //var appDomain:ApplicationDomain = new ApplicationDomain(ApplicationDomain.currentDomain);
        //var appDomain:ApplicationDomain = null;
        mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompleteHandler);
        mLoader.load(mRequest, new LoaderContext(false, appDomain));
    }

    private function onCompleteHandler(loadEvent:Event):void
    {
        //Get the object from the loadEvent
        var obj:Object = loadEvent.target.content;
        //Verify that the methods exist on the object
        trace("Loaded item id: " + obj.getInterfaceId());
                    //This returns Loaded item id: ExternalTestInterfaceImplementation!
        //Try assigning as an instance of the shared type - fails with type coercion error
                    //Throws the following type error:
                    //TypeError: Error #1034: Type Coercion failed: cannot convert myPackage::ExternalTestInterfaceImplementation@257b56a1 to myPackage.TestInterface.
        var castItem:TestInterface = TestInterface(obj);
        trace("castItem: " + castItem);
    }
}

接口声明:

public interface TestInterface 
{
    function getInterfaceId():String;
}

接口实现

public class ExternalTestInterfaceImplementation extends MovieClip implements TestInterface 
{
    public function getInterfaceId() : String
    {
        return "ExternalTestInterfaceImplementation!";
    }

    public override function toString():String
    {
        return getInterfaceId();    
    }
}

1 个答案:

答案 0 :(得分:1)

这似乎是由播放器中的错​​误引起的。我刚才遇到过同样的问题。它在这里描述:

https://bugs.adobe.com/jira/browse/ASC-3529

有一种解决方法,主要包括使用URLLoader(作为二进制文件)加载swf,然后使用Loader::loadBytes(而不是仅使用常规Loader)。

以下是对此解决方法的解释以及解决此问题的加载程序类:

http://blog.aleksandarandreev.com/?p=42