How to play WAV from url AS3
How to play Wav in AS3 Project ? ( F开发者_JAVA百科lash builder ).
need to play something like this: http://api.microsofttranslator.com/v2/Http.svc/Speak?appId=54DDE60EEC8761E8C1226AFE4A3FDBDB992E371B&text=hello&language=en
Unfortunately you can't play external WAV files in Flash. See Kodiak's answer for playing MP3 files.
Code copied from 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);
}
精彩评论