Question : flash cs3 playlist

How to build a play list on flash cs3 using the list as toggle buttons?
Hi, I need  to crate a flash file that will served as a soundtrack.
I have a list of 9 titled songs converted each one into buttons. All I want is to make each button play the sample audio belonging to the song title. I manage to make it play but I have more than one so my problem is that I need for each button to turn off the previous first and then play the new audio in case user switches to next song before the first one ends.

This is my code sample for just 2 buttons so far:
mySound = new Sound();
mySound.attachSound("parriba");

song1_btn.onRelease = function() {
      mySound.start();

}

mySound = new Sound();
mySound.attachSound("lloroporti");

song2_btn.onRelease = function() {
      mySound.start();
}

Answer : flash cs3 playlist

this should work

//as2
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
function playSound(which:String) {
var mySound:Sound = new Sound();
stopAllSounds();
mySound.attachSound(which);
mySound.start();
}
 
btn1.onRelease =function() {
playSound("a");
}
btn2.onRelease = function() {
playSound("b");
}
Open in New Window Select All
Random Solutions  
 
programming4us programming4us