我正在使用Adobe Flash CS6和ActionScript 3创建一个简单的无线电应用程序。当我从源文件运行它时,下面的代码完全正常,但是当我从swf文件运行它时失败。
没有声音,但也没有发生错误。
var mySound:Sound = new Sound();
var myChannel:SoundChannel = new SoundChannel();
var context:SoundLoaderContext = new SoundLoaderContext(3000, false);
var url:URLRequest = new URLRequest("http://66.45.232.131:9994")
mySound.load(url, context);
play_btn.addEventListener(MouseEvent.CLICK, onClickPlay);
function onClickPlay(e:MouseEvent):void {
myChannel = mySound.play();
}