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.
我有一个外部 .swf 已加载到闪存中,但我无法控制此 .swf 中的代码。我已将它加载到场景中的影片剪辑中,并且我想控制此加载的 .swf 中声音的音量。做这个的最好方式是什么?
使用flash.media.SoundMixer该类,您可以控制应用程序中的所有声音。您可以将其视为混音台上的主音量控制。我相信这也适用于外部加载的 SWF。
flash.media.SoundMixer
var volume:Number = 0.5; SoundMixer.soundTransform = new SoundTransform(volume);