如何从网址AS3播放WAV

时间:2011-03-21 10:31:22

标签: flash actionscript-3 flash-builder

如何在AS3项目中玩Wav? (Flash构建器)。

需要玩这样的东西: http://api.microsofttranslator.com/v2/Http.svc/Speak?appId=54DDE60EEC8761E8C1226AFE4A3FDBDB992E371B&text=hello&language=en

2 个答案:

答案 0 :(得分:0)

Sound class reference

复制的代码
var req:URLRequest = new URLRequest("http://av.adobe.com/podcast/csbu_dev_podcast_epi_2.mp3");
var snd:Sound = new Sound();

try {
snd.load(req);            
snd.play();
}
catch (err:Error) {
trace(err.message);
}

答案 1 :(得分:0)

很遗憾,您无法在Flash中播放外部WAV文件。请参阅Kodiak的播放MP3文件的答案。