ActionScript 3 AS3加载和播放外部MP3文件

Posted

tags:

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

import flash.media.Sound;
import flash.media.SoundChannel;
import flash.net.URLRequest;

var snd:Sound = new Sound();
var channel:SoundChannel = new SoundChannel();
snd.load(new URLRequest("song.mp3"));
snd.addEventListener(Event.COMPLETE, onComplete, false, 0, true);
function onComplete(evt:Event):void {
	channel = snd.play();
}

以上是关于ActionScript 3 AS3加载和播放外部MP3文件的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3加载和使用外部CSS文件

ActionScript 3 AS3加载和显示外部SWF文件

ActionScript 3 AS3:加载外部.txt和.css

ActionScript 3 AS3在运行时加载和访问外部SWF中的字体

ActionScript 3 AS3加载外部文本文件

ActionScript 3 AS3:加载外部txt文件