I have used the below code.
stop();
this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, onLoadingAction);
this.loaderInfo.addEventListener(Event.COMPLETE, onLoadedAction);
this.loaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioErroAction);
function onLoadingAction (e:ProgressEvent):void
{
trace("loading");
}
function onLoadedAction (e:Event):void
{
this.loaderInfo.removeEventListener(ProgressEvent.PROGRESS, onLoadingAction);
gotoAndStop(currentFrame+1);
}
function ioErroAction (e:IOError):void
{
trace("Dev Ben " + e.toString());
}
This code is supporting for chrome and firefox. But if I run using IE, its stuck with onLoadingAction.
What do I needs to do to run in IE?
onLoadingAction? - goliatone