Hi There!!!

I am super new to Flash and superduper new to AS3.

I am creating a small video clip for my song recording. I want to have my entire movie, which is 1-689 frame long, looping until the song completely ends.

I figured out the script to call out the mp3 file
var req:URLRequest = new URLRequest("song.mp3");
var s:Sound = new Sound(req);
s.play();

...and it works fine until the movie loops again and plays another instance of the audio. The whole thing basically sounds like a clashing mess!

Any help would be greatly appreciated!!!
Thank you!