jakerbug
11-03-2008, 09:27 PM
I'm using this code with a simple on/off switch for music on a website:
my_sound = new Sound();
my_sound.attachSound("bestdays");
my_sound.start(0,1000);
play();
But the MP3 is about 1.5MB and it takes a while for the SWF to load. Is there any SIMPLE way to stream this single audio file rather than load the whole thing before showing the movie?
my_sound = new Sound();
my_sound.attachSound("bestdays");
my_sound.start(0,1000);
play();
But the MP3 is about 1.5MB and it takes a while for the SWF to load. Is there any SIMPLE way to stream this single audio file rather than load the whole thing before showing the movie?