minimalcomps progressBar

来源:互联网 发布:win10网络连接本地连接 编辑:程序博客网 时间:2024/05/17 21:42


var pb:ProgressBar=new ProgressBar(this,10,10);

pb.maximum=100;


addEventListener("enterFrame",onEnterEvent);
function onEnterEvent(event:Event):void
{
pb.value++;
if(pb.value==100)
pb.value=0;

}



原创粉丝点击