Hi,

I am using actionscript 2.0 and I am trying to create multiple sound buttons that trigger multiple different .mp3 files via mouse click. I have gotten it to work with one sound file using this actionscript

my_sound = new Sound();
my_sound.attachSound("Drum Beat 1_bip.mp3");
play();

but as soon as I add another button and try to link it to another file it does not work. I would like to make it so that even if I click another button to start another sound, the first sound keeps playing. How would I do this. Also I am very new to Flash so the more details the better. I need an answer ASAP as I have to complete this tonight. Thank you very much in advance.