В FF се плейват мп3 без никъв проблем... но в други браузери нищеееееее.......
ето и малко код от частта с плейването..
- Code: Select all
public function playSong(url:String):void
{
var request:URLRequest = new URLRequest(url);
try { soundControll.close(); soundChanel.stop(); } catch (e:Error) { };
soundControll = new Sound();
soundControll.load(request);
soundChanel = soundControll.play();
soundChanel.soundTransform = sndTransform;
soundControll.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
soundChanel.addEventListener(Event.SOUND_COMPLETE, soundCompleteHandler);
timer.start();
}
