Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在flash cs3 actionscript中播放其他音乐时如何停止音乐背景2,我也有音乐背景我点击按钮时有按钮(扬声器),背景音乐和按钮扬声器同时播放,如何停止背景声音
private function muteFunction(e:Event):void{ if (isMuted==true) { sc = music.play(); isMuted=false; } if (isMuted==false) { sc.stop(); isMuted=true; } }
其中 sc 是 SoundChannel 对象。另一种方法是将音量设置为 0,这样它在技术上不会停止,但只是听不见。