I Can simulate in flash file but not happen but when test on IE it’s stay on 0%
please Help
this is my code
stop();
this.loaderInfo.addEventListener(Event.COMPLETE, loadComplete);
this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, loadProgress);
function loadComplete(e:Event)
{
// load complete - remove listeners and move on
this.loaderInfo.removeEventListener(Event.COMPLETE, loadComplete);
this.loaderInfo.removeEventListener(ProgressEvent.PROGRESS, loadProgress);
play(); // play next frame
}
function loadProgress(e:ProgressEvent):void {
// load progress function
var percent:int = (e.bytesLoaded * 100)/e.bytesTotal)
txtLoadingStatus.text = percent+"";
}
thanks all people to reply