flash用一个按钮控制影片剪辑的播放暂停,求大神详解,欧是菜鸟一枚。

暂停是stop_btn 开始是play_btn 用的是flash 2015cc
2025-01-01 15:30:24
推荐回答(2个)
回答1:

stop_btn.addEventListener(MouseEvent.CLICK,playMc);
play_btn.addEventListener(MouseEvent.CLICK,playMc);
function playMc(e:MouseEvent):void{
    if(e.target==stop_btn){
_mc.stop();
    }else{
_mc.play();
    }
}
_mc就是你的影片剪辑名称

回答2:

这个版本需要使用AS3.0写代码,而且要在帧上写才行。

stop();
stop_btn.addEventListener(MouseEvent.CLICK,Press);
function Press(evt:MouseEvent):void {
stop();
}
play_btn.addEventListener(MouseEvent.CLICK,Press);
function Press(evt:MouseEvent):void {
play();
}