我有一个带有一堆外部声音到 SWF 的项目。我想播放它们,但是每当我尝试将新 URL 加载到声音对象中时,它都会失败,
错误 #2068:无效的声音
或引发 ioError
错误 #2032 流错误
// 尝试使用前缀为“http://..”“file://..”“//..”和“..”的路径)
var path:String = "http://../assets/the_song.mp3";
var url:URLRequest = new URLRequest( path );
var sound:Sound = new Sound();
sound.addEventListener( IOErrorEvent.IO_ERROR, ioErrorHandler);
sound.addEventListener( SecurityErrorEvent.SECURITY_ERROR, secHandler);
sound.load(url);