hi,
i have a 3 buttons with 3 different sounds on them and a stop button. To get the song from button b, i have to stop the one playing from button a. Can somebody help me out with the code i need without having to stop them and restart?
here is my code:
on (press) {
if (playing != true) {
firstSound.stop(“firstSound01”);
firstSound2.start(0, 999);
playing = true;
}
}
thx