Looping this mp3 player

I found the mp3 player by Theron Parlin recently and got it to work just about the way I want it - except it won’t loop. Here’s what I tried:


s = new Sound();
s.loadSound("assets/music1.mp3", true);
currentTrack=" ";
stopped=false;
paused=false;
stop();

This is where the mp3 is initiated so I thought adding

s.start(0, 9999);

would do the trick. but no dice. Any suggestions?