Привет! Подскажите как сделать постоянное проигрывание музыки, чтоб постоянно повторялось?

Код:
var S=new Sound();
S.loadSound("music.mp3", true);
var PlaySound:Boolean=true;
MB.onPress=function(){
sp=S.duration;
sd=S.position;
if(sd<=sp||sd==0){
PlaySound;
}
if(PlaySound){
S.stop();
}
else{
S.start();
}
PlaySound=!PlaySound;
trace(PlaySound)
}
Спасибо за помощь!