as3.0代码:
在影片的最后一帧加入this.stop();
假如mc_mc的总帧数为30;
在主场景中第一帧和第二帧中都加入this.stop();
再把下面代码放在主场景中的第一帧中就可以了!!!
stage.addEventListener(MouseEvent.CLICK,stagemouseclick);
function stagemouseclick(event:MouseEvent){
if(mc_mc.currentFrame==30){
this.gotoAndStop(2);
}
}