我在flex 4.6 Web应用程序上遇到swfLoader问题。 我将外部SWF文件(大小= 2.21 KB)加载到swfLoader。 swf只包含一个60帧的简单时间轴动画,看起来像倒数计时器。它在所有帧中都有基本圆圈,并根据帧编号填充。
在Internet Explorer中,它可以工作。 在Firefox和Chrome中,它正在加载文件(到达完整事件),但在开始时部分显示它,大约需要一分钟才能完全显示该对象(例如,完整的圆圈)。另外,如果我在加载过程中放大它也可以正常工作并显示整个内容。
你能帮我解决一下吗?我正试图将它修复近2天......<fx:Script>
<![CDATA[
import mx.events.FlexEvent;
[Bindable]
public var MC:MovieClip;
public var timerC:Timer = new Timer(1000);
public var cou:int = 1;
protected function countDownAnimation_completeHandler(event:Event):void
{
MC = MovieClip(countDownAnimation.content);
MC.gotoAndStop(1);
timerC.addEventListener(TimerEvent.TIMER,timerTick);
timerC.start();
}
protected function timerTick(event:TimerEvent):void
{
cou++;
if(cou == 61){
cou=1;
}
MC.gotoAndStop(cou);
}
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:SWFLoader id="countDownAnimation"
source="assets/images/tradebox/timerAnimation.swf"
minWidth="23" minHeight="27"
scaleContent="true"
complete="countDownAnimation_completeHandler(event)"
/>
谢谢!