Instead of using 2 buttons to start or stop the music, is it possible to just use one? So when the music is playing, click it and it’ll stop, but when the music is stopped, on clicking, it will start.
// on the timeline containing mySound = new Sound(), button instance name myButton
myButton.onRelease = function() {
(playing=!playing) ? mySound.start() : mySound.stop();
};
In addition, I cover that in my tutorial if you want to read that too. See sig.