我的as3预加载器出了问题。我正在DeviantArt中上传文件,如果它是not on fullscreen,该文件可以正常工作。
但是如果它在fullscreen中,则加载器不起作用。但是,此问题仅发生在Google Chrome中。它适用于Firefox和Explorer。
我无法弄清楚出了什么问题。
这是我正在使用的代码
stop();
import flash.display.*;
this.stop();
LoadingBar.loaderInfo.addEventListener(ProgressEvent.PROGRESS, LoadingProgress);
LoadingBar.loaderInfo.addEventListener(Event.COMPLETE, LoadingFinish);
function LoadingProgress(event:ProgressEvent):void
{
var pcent:Number = event.bytesLoaded / event.bytesTotal * 100;
LoadingBar.scaleX=pcent/100;
LoadingInfo.text = int(pcent) + "%";
}
function LoadingFinish(event:Event):void
{
gotoAndStop(2);
}
答案 0 :(得分:0)
Chrome使用不同版本的Flash播放器,因此可能存在安全错误。
尝试安装debug flash player以获取Chrome中嵌入的Flash内容的错误消息