Dynamically loaded mp3...I wish

Hey Everyone,

I’ve searched the forums and tutorials and I’m using the code below to load an mp3 dynamically into an empty movie clip.

I want the mp3 loop play once the movie has been loaded.

Tell me if I messed up the code below:


this.onEnterFrame = function () {
_root.createEmptyMovieClip(“container”, 1);
mySound = new Sound();
mySound.loadSound(“introloop.mp3”,false);
}


Note: when I had the streaming set to “true”, the mp3 sounded crappy. So I changed it to false and there was no sound at all.

Thanks for any suggestions.