我想要加载外部的音乐
但是发布之后有显示加载成功却没有声音
可以帮我看看是哪里有问题吗?
感谢!!
var PlaySound:Sound = new Sound();
var BF:SoundLoaderContext = new SoundLoaderContext(30000, true);
var SoundCH:SoundChannel =new SoundChannel();
var url:URLRequest = new URLRequest("Melody.wav");
PlaySound.addEventListener(Event.COMPLETE,SoundOK);
PlaySound.addEventListener(IOErrorEvent.IO_ERROR, ERR);
PlaySound.load(url,BF);
function SoundOK(e:Event):void
{
test_txt.text = "加载成功";
var Position:int = SoundCH.position;
SoundCH = PlaySound.play(Position);
}
function ERR(E:IOErrorEvent)
{
test_txt.text = "EEROR";
}
stop();
另外我把连结的部分换成网址
像这样:
var url:URLRequest = new URLRequest("http://www.ehomework.com.tw/Material2/VOICE/002.mp3");
变成连加载成功都没有显示
增加ProgressEvent去显示加载的进度
也没有东西跑出来