从外部链接swc的方法
我创建了一个flex应用程序,我想以这种方式使用第三方库(swc)
基本上,我想有一个可选的动态(运行时)链接到本地存储在用户端的SWC。 如果swc可用,我的swf应该可以使用它,否则它不需要。
可能吗?
我不确定SWC,但这是我如何使用SWF来完成的。 请注意,我正在复制不同部分的代码,因此您可能需要对其进行微调
var the_cls:Class;
// First, load SWF with classes:
var request:URLRequest = new URLRequest( u );
var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, function (e:Event){
// then get class from the file, you can do it for few classes
the_cls = e.target.applicationDomain.getDefinition("my_ldd_class_name") as Class;
});
loader.load(request, new LoaderContext(false, ApplicationDomain.currentDomain));
// then use class in your application:
the_obj = new the_cls();
the_obj.the_func();
链接地址: http://www.djcxy.com/p/35441.html