ActionScript 3 如何开始和停止声音

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 如何开始和停止声音相关的知识,希望对你有一定的参考价值。

Start Sound
var snd:Sound = new OldPhone();    // OldPhone is the name of the audio file in the library.
var channel:SoundChannel;
channel = snd.play()

Stop Sound
channel.stop();  // stops playing whatever the sound is in that channel

以上是关于ActionScript 3 如何开始和停止声音的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 ActionScript 3开始和停止拖动

ActionScript 3开始和停止拖动

重叠声音 Actionscript 3/AIR

使用 ActionScript 3 从 Air 中的麦克风查找活动时,如何忽略应用程序播放的声音?

如何在 Actionscript 3 中播放与 SWF 不在同一目录中的声音?

如何在 ActionScript 3 中从缓冲区 (ByteArray/Stream) 播放 MP3 声音?