AS3嵌入式补间仅部分显示

时间:2015-05-14 16:37:22

标签: actionscript-3 flash

当我addChild一个内嵌60帧的影片剪辑时,运行SWF时只播放最后几帧。为什么呢?

function onClick10f2(e: MouseEvent) {    
    addChild(gdropBall1)
    gdropBall1.x = 356.10;
    gdropBall1.y = 28;
}

1 个答案:

答案 0 :(得分:0)

问题已通过gdropBall1.gotoAndPlay(1);

解决
function onClick10f2(e: MouseEvent) {

   gdropBall1.gotoAndPlay(1);    
    addChild(gdropBall1)
    gdropBall1.x = 356.10;
    gdropBall1.y = 28;