码迷,mamicode.com
首页 > 其他好文 > 详细

swf loading 自身

时间:2017-08-11 13:32:29      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:tween   ==   ons   request   分享   art   load   inf   ash   

stop();
import flash.net.URLRequest;
import caurina.transitions.Tweener;

loaderInfo.addEventListener(Event.OPEN, thisOpen);
loaderInfo.addEventListener(ProgressEvent.PROGRESS, thisPro);
loaderInfo.addEventListener(Event.COMPLETE,thisCom);


//開始载入
function thisOpen(e){
	loadTxt.text = "0 %";
}

//载入进度
function thisPro(event:ProgressEvent):void{
	loadTxt.text = "" + Math.round(event.bytesLoaded / event.bytesTotal * 100) + " %";
}

//载入完毕
function thisCom(event:Event):void
{
	loadTxt.text = "";
	gotoAndStop(2);
}
技术分享

swf loading 自身

标签:tween   ==   ons   request   分享   art   load   inf   ash   

原文地址:http://www.cnblogs.com/llguanli/p/7345301.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!