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.
有人可以帮助使用 AS 3.0 在 Flash CS3 中快速静音或取消静音舞台音量吗?
谢谢
你想要的是 SoundMixer 类。只需像这样设置它的 soundTransform 对象:
沉默的:
SoundMixer.soundTransform = new SoundTransform(0);
取消静音:
SoundMixer.soundTransform = new SoundTransform(1);
当您想停止声音时,将此行放入脚本中:
SoundMixer.stopAll();