Loop mp3

I’ve checked the board and looked for some help, but none of the mp3 loops threads are actually working for me…
this is what I use…

on (release) {
if (mySoundPosition > 0) {
_root.mySound.stop();
_root.mySound.start(0, 9999);
stopped=false;
}
else {
_root.mySound.stop();
_root.mySound = new Sound();
_root.mySound.loadSound(songtitle[count2], true);
_root.mySound.start();
stopped=false;
}
}

…but it won’t loop

ideas, thoughts?

thx,
m.

What is that button supposed to do ? Is it a replay from beginning button ?

button is supposed to load and play AND LOOP the mp3 file…
need the fla?

I’m confused what the mySoundPosition check is doing there…

here…see for yourself…

m.

I can’t really do much with it since I don’t have the files you have, such as the textfile. But anyways. I suggest you have a look at www.kennybellew.com to learn about the Sound object and MP3 players :slight_smile:

thx, that’s where I have the idea from, it doesn’t explain how to loop mp3’s though on www.kennybellew.com … only linked sound files.