如何使影片剪辑静音?
我在另一个项目中加载影片剪辑。这个loop.swf 中有音乐。
loopingLoader = new Loader;
loopingLoader.load(new URLRequest("img/loop.swf"));
addChild(loopingLoader);
几秒钟后,我想卸载或更容易“静音”该剪辑。
当我卸载它时,即使我在其中加载新剪辑,音乐也会继续播放。
我怎样才能使这个剪辑静音?
感谢您的帮助。
氮
I load a movieclip in another project. this loop.swf has music in it.
loopingLoader = new Loader;
loopingLoader.load(new URLRequest("img/loop.swf"));
addChild(loopingLoader);
After some seconds, I want to unload or easier "mute" this clip.
When I unload it, even when I load a new clip in it, the music continues to play.
How can I mute this clip?
Thanks for your help.
N
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过 SoundMixer 类分别设置 soundTransform 属性或调用 stopAll() 函数来控制全局声音或停止 Flash Player 中的所有声音:
flash.media.SoundMixer
you can control global sounds or stop all sounds in flash player via the SoundMixer class by setting the soundTransform property or calling the stopAll() function respectively:
flash.media.SoundMixer
您是否正确移除和处理夹子?
如果您只想静音所有声音,这会有所帮助:
Are you removing and disposing you clip correctly?
This helps if you just wants to mute all sounds:
试试这个:
Try this: