Streaming Music Mx

SUP AGAIN PPLS.

MY ? IS THIS

WHEN YOU STREAM MUSIC IN MX RIGHT HOW CAN I MAKE THE MP3 FILE REPEAT ITSELF AFTER ITS DONE.

set the number of loops to the amount of times that you want it to loop.

yeah but where. this is the line of code i have on it

mySound = new Sound();
mySound.loadSound(“my sound here.mp3”, true);

since the song is external i cant designate it in the properties panel

mySound.onSoundComplete = function() {
this.start();
}

I have this button and when i press it, it dubles the sound !

so i did this ==>

on (release) {
stopAllSounds();
mySound = new Sound();
mySound.loadSound(“music1.mp3”, true);
mySound.onSoundComplete = function() {
this.start();
};
}

so its stops the sound then plays it just ONE sound and not same or mixed it out !

is this correct then ? well it did work out !

sup yall. um i place the your coding under mine but the song did not play back any suggestions

this is your code right
[AS]mySound = new Sound();
mySound.loadSound(“my sound here.mp3”, true);[/AS]
if so then your problem is that you are streaming the clip, im sure a way exists of looping streaminf sound loaded externally but i dont know it.
try this instead.
[AS]mySound = new Sound();
mySound.loadSound(“my sound here.mp3”, false);[/AS]
then have[AS] mySound.start(0,999);[/AS] function on another button or timeline or wherever you want!!
I recently made a basic MP3 player which loads external clips and allows volume control whith a preloader bar to!!check it out if you can be arsed
http://www.rakerecords.com/test/Rake.html
I have the sounds so you must press play but you could create a version which just looped the sound once it loaded.