Hello,
I'm using the as3 loader class as follows:
var l:Loader = new Loader();
l.addEventListener(Event.COMPLETE, onComplete);
l.load(new URLRequest(e.target.data));
function onComplete(e:Event){
addChild(e.target.content);
}
But it's not loading????
I've imported the loader class, and it works without the event listener but not with it.
Also, is it possible to load something silently? E.G so it does not appear as loaded in the activity window in safari etc?