How can I load awd viewer in my swf?
(awd is away builder’s file extension)
I found awd viewer example file in away builder website.
AWD Viewer Example File
it’s works well.
but it’s not working when I’m loading it to my parent swf.
my parent swf file’s code is just this.
private function init(e:Event = null):void
{
loadSWF("AWDViewer.swf");
}
private function loadSWF(url:String):void
{
var urlRequest:URLRequest = new URLRequest(url);
loader = new Loader();
loader.load(urlRequest);
addChild(loader);
}
how can i solve this problem? plz help me.