does Streaming MP3s work in flash MX?
i have been trying to get an mp3 player i made working and its fine when i open the page on my computer the songs play etc
but when uploaded to my site they dont play i think this is cause the MP3s are large and either not downloading or taking to long.
So how do you get MP3s to stream dynamicallyif there not attached to the movie itself.
heres my code…
[AS]Mysound = new Sound();
this.button1.onPress = function() {
_level1.Mysound.loadSound(“I_Used_To_Write_Songs.mp3”, false);
_level1.Mysound.start(0);
};[AS]
I have three of these buttons which dynamically load an MP3 from external source however as i said it doesnt work when posted to my site??
Could it be something simple like the bandwidth limit of my site??
or is it just impossible to do and if so whats the next best way of making an MP3 player preferably without attaching the MP3 to the movie (1 of them alone is 3mbs)