How to load sound dynamically?

Is there a way to load sound into swf dynamically and loop it?
I found this tutorial on this site: http://www.kirupa.com/developer/mx/loading.htm
it gives the following code:

mySound = new Sound();
mySound.loadSound(“music.mp3”,true);

It works perfectly, but I don’t know how to make it loop.
Thanks