Loading

岁酱吖の 提交于 2019-11-28 11:15:58

this.loaderInfo.addEventListener(ProgressEvent.PROGRESS,loading);//添加进度监听;
this.loaderInfo.addEventListener(Event.COMPLETE,loaded);//添加进度完成监听;
function loading(eve)
{
var loadpre:int = eve.bytesLoaded / eve.bytesTotal * 100;
txt.text = "影片载入" + loadpre + " %";
}


//显示进度载入百分比-----
function loaded(eve)
{
txt.text = "影片载入完毕!";
if (framesLoaded == totalFrames)
{
removeChild(this.getChildAt(0));
nextFrame();
}
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!