我正在创建一个在线收音机,但我遇到了一个奇怪的问题,代码可以运行 5 次!之后播放按钮将不起作用!
我不确定这是否相关,但我也收到SecurityError: Error #2000: No active security context。当我关闭 swf 播放器时。
import flash.events.MouseEvent;
var streaming:Boolean;
this.addEventListener(MouseEvent.CLICK, music_on)
function music_on(event:MouseEvent):void
{
var sndChannel:SoundChannel=new SoundChannel();
var s:Sound = new Sound();
if (!streaming)
{ gotoAndStop(2);
var req:URLRequest = new URLRequest("http://127.0.0.1:8000/listen.mp3");
var context:SoundLoaderContext = new SoundLoaderContext(2000,false);
s.load(req, context);
sndChannel=s.play();
streaming=true;
}
else
{
gotoAndStop(1);
streaming=false;
sndChannel.stop();
SoundMixer.stopAll();
trace ("not playing");
}
}
stop();