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.