ActionScript 3 播放声音基础知识

Posted

tags:

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

import flash.media.Sound;
import flash.media.SoundChannel;

somebutton.addEventListener(MouseEvent.CLICK,playSound);

var channel:SoundChannel;
var snd:MySnd; //MySnd is the class name of the sound file in the library.
snd = new MySnd(); 

function playSound(e:Event = null) {
	channel = snd.play();
}

以上是关于ActionScript 3 播放声音基础知识的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

使用 ActionScript 3 将保存声音录制到文件中。不是来自麦克风

重叠声音 Actionscript 3/AIR

actionscript3 计算器声音播放