开发者

How can I stop all sound in flash using AS3?

开发者 https://www.devze.com 2023-02-20 04:38 出处:网络
What can I do to stop all sound in my movie using AS开发者_开发知识库3?you need to import flash.media.soundmixer, then you may run the command soundmixer.stopAll();

What can I do to stop all sound in my movie using AS开发者_开发知识库3?


you need to import flash.media.soundmixer, then you may run the command soundmixer.stopAll();

this should stop all the sounds.


You can try this solution as well:

var sTransform:SoundTransform = new SoundTransform(1,0);
sTransform.volume = 0;
SoundMixer.soundTransform = sTransform;

Taken from HERE

0

精彩评论

暂无评论...
验证码 换一张
取 消