ActionScript 3 AS3:处理ie7中的预加载器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3:处理ie7中的预加载器相关的知识,希望对你有一定的参考价值。
this.addEventListener("enterFrame",onEnterFrame);
function onEnterFrame(e:Event) {
loadbar.width = (this.loaderInfo.bytesLoaded/this.loaderInfo.bytesTotal)*200;
if (this.loaderInfo.bytesLoaded == this.loaderInfo.bytesTotal) {
gotoAndPlay(2);
this.removeEventListener("enterFrame", onEnterFrame);
}
}
以上是关于ActionScript 3 AS3:处理ie7中的预加载器的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 Flex AS3中的KeyPress /键盘事件处理
[ActionScript 3.0] as3处理xml的功能和遍历节点
ActionScript 3 AS3在阵列中?
ActionScript 3 AS3:在数组中搜索
ActionScript 3 AS3:在ActionScript中使用E4X生成动态XML
ActionScript 3 AS3从数组中删除元素