是否可以将SWF version
加载的 SWF 读入主文件?
var mcl:Loader = new Loader();
mcl.contentLoaderInfo.addEventListener (Event.COMPLETE, prepareDisplay(mcl));
mcl.load (new URLRequest ('movie.swf'));
function prepareDisplay (mcl:Loader):Function {
return function (e:Event):void {
mcl.contentLoaderInfo.removeEventListener (Event.COMPLETE, prepareDisplay);
media_container.addChild(mcl);
// how can I get the loaded swf version from here?
}
}