For those of you using sound, you must have come accross this problem a few times. Your streaming mp3 doesn't loop correctly using the traditional actionscript way using the onSoundComplete method :
-
-
mySound:Sound = new Sound(this);
-
mySound.loadSound("loop.mp3",true);
-
mySound.onSoundComplete = function() {
-
this.start(0);
-
}
There was allways this little gap at the loop point, it's because mp3 encoders allways add blank noise at the beggining and the end of the files, around 24.5 ms of silence. (more...)