Sound Repeating

I’m trying to Make my sound autoplay when the swf starts. Which this does:

myMusic = new Sound();
myMusic.loadSound(“sound2.mp3”, true);
myMusicVolume=100;
myMusic.setVolume(50);

But i also want to have the sound repeat.
i thought i was to use:

myMusic.start(0,999)

but i can’t get it to work and start on opening.

This is the code that is on the play button. It works.

on (press) {
if (playing!=true) {
_root.myMusic.start(0,99);
playing=true;
}myMusic.onSoundComplete.stop()
}
What do i need to change to get it to autoplay on opening, and repeat as well? Any help is appreciated!:smiley: