External Swf on Android Air and IOS Air
Hello
Can android AIR and IOS AIR app download and play external SWF with code inside?
I have created android AIR app(SDK version 4.0) which load external swf with simple movie clip on the scene.
var loader:Loader=new Loader();
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoaded);
loader.load(new URLRequest("2.swf"));
function onLoaded(e:Event):void
{
addChild(loader);
}
I have installed this android AIR app on device but i do not see external swf on the scene.
Thanks in advance