Streaming music

whats the best way for sound to come in in flash when it comes to whole tracks???

im asking because when it comes to whole 2 to 3 min tracks, ppl say that streaming is the way to go but if the song hasnt finished downloading wont it be all choppy and stuff???

well, you can use loadSound function:

loadSound("http://www.microsoft.com/pieintheface.mp3", **true**);

That second parameter (true) loads the mp3 to the point where it can be played without being stopped while it’s loading.

so the whole thing woould look like this???

mySound = new Sound();
mySound.loadSound(“Track 03.mp3”, true);