如何停止在 as3 中播放声音?
我在第二帧中有这段代码来播放歌曲,效果很好。我的库中的声音类别是“MySound”。
var snd:MySound = new MySound
snd.play();
现在我需要这首歌从后一帧停止播放。
I have this code in the second frame to play a song, and it works fine. The class of the sound in my library being "MySound".
var snd:MySound = new MySound
snd.play();
Now I need the song to stop playing from a latter frame.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须为此使用
SoundChannel
类:参考:http:// www.republicofcode.com/tutorials/flash/as3sound/(第 4 节 - 停止声音)
You have to use
SoundChannel
class for this:Reference: http://www.republicofcode.com/tutorials/flash/as3sound/ (Section 4 - Stopping a Sound)
提醒:
对我来说效果很好:)
希望它能解决问题! :D
Reminder :
It works so fine to me :)
Hope it solved the problem ! :D