Hi,
You could look into the sound object for controlling sounds in your flash movie.
mySound=new Sound(this);
You now have the choice of loading external sounds(.mp3 files) with the loadSound method or you can use sounds in your library with the linkage set for export with the attachSound method...
external sounds...
mySound.loadSound("someFile.mp3",true)
library sounds...
mySound.attachSound("soundID");
mySound.start();
A mind once stretched by a new idea never regains its original dimensions.
- Oliver Wendell Holmes
Bookmarks