我正在尝试使用 gotoAndStop 从一个影片剪辑跳转到其他影片剪辑中的帧。
但是当使用 gotoAndStop 时,movieclip 就消失了?当我将其更改为 gotoAndPlay 时,它会跳转到正确的帧但播放影片剪辑并且不希望它停止?
angZoom_mc.addEventListener(MouseEvent.CLICK, zoomOut);
function zoomOut(event:MouseEvent):void
{
MovieClip(this.parent.getChildByName('ZoomOutAngles_mc')).visible = false;
MovieClip(this.parent).spin_Y.gotoAndStop(1);
}
我不明白为什么它适用于 gotoAndplay 而不是 GotoAndStop?