如何停止声音?

发布于 2024-09-08 00:56:14 字数 70 浏览 3 评论 0原文

如何停止这种声音? :

MySound.play(0,100,null);

How to stop this sound ? :

MySound.play(0,100,null);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你怎么这么可爱啊 2024-09-15 00:56:14

play 返回一个 SoundChannel,它有一个 stop() 方法。请参阅文档

生成一个新的 SoundChannel 对象
播放声音。这个方法
返回一个 SoundChannel 对象,其中
您可以停止声音并
监控音量。

play returns a SoundChannel, which has a stop() method. See Documentation.

Generates a new SoundChannel object to
play back the sound. This method
returns a SoundChannel object, which
you access to stop the sound and to
monitor volume.

窝囊感情。 2024-09-15 00:56:14
var soundChannel:SoundChannel = MySound.play(0, 100, null);
...
soundChannel.stop();
var soundChannel:SoundChannel = MySound.play(0, 100, null);
...
soundChannel.stop();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文