Flash MP3 woes
Flash MP3 woes
Out of context: Reply #3
- Started
- Last post
- 7 Responses
- zack270
I'm streaming the mp3, so it can play before the sound is completely loaded....
var the_mp3:Sound = new Sound();
the_mp3.loadSound(mp3_link, true);
var start_point:Number = 0;
the_mp3.stop();play.onRelease = function() {
if (the_mp3.position == the_mp3.duration) {
audio_status = "stop";
start_point = 0;
}
the_mp3.start(start_point);
audio_status = "play";}