Ok, so I made a movie clip that toggles the sound button. There are 2 keyframes in the MC, the first with embedded sound and the stopSounds button, the second with no embedded sound and the startSounds button. I’ve assigned the following code to the buttons:
stopSounds
on(release){
stopAllSounds(); // stop sounds
nextFrame(); // show frame with start sound button
}
startSounds
on(release){
prevFrame(); // go to frame with sound & stop sound button
}
The buttons do not seem to work in the main stage. The MC doesn’t even show up as a button unless I assigned an on(release) to the MC instance in the main stage. Shouldn’t the code in the MC work? What am I doing wrong here?
Thanks much!