Ciao a tutti sul mio file flash ho inserito un suono mediante questo script:

var game_sound:Sound = new Sound();
game_sound.onLoad = function(success:Boolean):Void {
if (success) {
trace("Sound Loaded");
game_sound.start(0,9999);
}
};
game_sound.loadSound("jbsound.mp3", true);

Vorrei che il suono si ripetesse ma arrivato alla fine si ferma.
Cosa sbaglio???
GRAZIE A TUTTI
Leila