Button with Sound and Actionscript problem after hit loads next scene

I have a button with music that plays on hit and an action script. Everytime it plays the music works fine but it immediately goes to the next scene.

button ActionScript

on (press) {
stopAllSounds();
}
on (release) {
play();
}

I don’t want the next scene to launch while the music is playing. I am loading up 11 tracks and I want people to be able to pick a track to listen and then if choose another.

For the life of me I can’t seem to figure out what I am missing.

Thanks in advance for your help.

Deb