我想在做的Flash里播放一段音乐,可是不能暂停,我用stop()却出现这样的提示:TypeError: Error #1006: stop 不是函数。
at _fla::MainTimeline/hehe()
我研究了半天都不知道该怎么让这段音乐暂停,代码如下:
import flash.media.SoundChannel;
guanbi_btn.label="开启音乐";
var h:yinyue=new yinyue();
var sc:SoundChannel;
guanbi_btn.addEventListener(MouseEvent.CLICK,hehe);
function hehe(MouseEvent) {
switch (guanbi_btn.label) {
case "开启音乐" :
guanbi_btn.enabled=true;
sc=h.play();
guanbi_btn.label="暂停音乐";
break;
case "暂停音乐" :
sc=h.stop();
guanbi_btn.label="开启音乐";
break;
}
}
按钮的实例名称是:guanbi_btn,那首音乐叫:yinyue。