Sound loop question

Is there a way to make external streaming audio sound file
“mp3” loop. my understanding is that streaming audio won’t loop,
only works for attached sounds…

var my_sound:Sound = new Sound();
my_sound.loadSound(“jazz.mp3”, true);
my_sound.start.(0, 99)

This actionscript works but it won’t loop…

Mark Lane