我有一个主项目,我想将另一个项目的 swf 加载到其中:
//loader code in Main class of main project
var url:URLRequest = new URLRequest("../src/components/TextTool.swf");
var ttWrapper:UIComponent = new UIComponent();
var ldr:SWFLoader = new SWFLoader();
var context:LoaderContext = new LoaderContext();
if (Security.sandboxType == Security.LOCAL_TRUSTED) {
context.applicationDomain = new ApplicationDomain(ApplicationDomain.currentDomain);
} ldr.source = "../src/components/TextTool.swf";
ldr.loaderContext = context;
ldr.addEventListener(Event.COMPLETE, onLoadComplete);
ldr.load();
can.addElement(ldr);
这是第二个项目的 Main 类的代码:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:stark="stark.*" name="textModule" >
<stark:TextTool name="myTF" id="myTF"></stark:TextTool>
</s:Application>
现在这两个项目都包含一个接口文件:IModule,具有相同的代码,以及第二个项目(正在加载的那个)的一个元素,它是我的自定义类“TextTool”的一个实例,它扩展了 s:Group 并实现模块:
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" width="400"
xmlns:com="src"
height="130" creationComplete = "initText()" implements="IModule"></s:Group>
现在,一旦我加载了 swf,我就想访问该 TextTool 实例,该实例的 ID 为“myTF”:
//Code in the main class of the main project
trace(getQualifiedClassName(mySwf.getChildByName('textModule')['myTF']));
trace(mySwf.getChildByName('textModule')['myTF'] is IModule);
//output:
//stark::TextTool
//false
正如我上面提到的,我在两个项目中都有接口,相同的代码,它具有相对于主类的相同路径,并且 myTF 确实扩展了 IModule。加载 swf 后,我得到了正确的元素,但是在验证它是否实现 IModule 时我仍然得到错误。为什么?