4

有人可以帮助使用 AS 3.0 在 Flash CS3 中快速静音或取消静音舞台音量吗?

谢谢

4

2 回答 2

13

你想要的是 SoundMixer 类。只需像这样设置它的 soundTransform 对象:

沉默的:

SoundMixer.soundTransform = new SoundTransform(0);

取消静音:

SoundMixer.soundTransform = new SoundTransform(1);
于 2009-09-01T15:09:37.690 回答
2

当您想停止声音时,将此行放入脚本中:

SoundMixer.stopAll();
于 2013-04-09T19:20:33.317 回答