Por Favor Help a Brudda Out w/ Dynamically Loading MP3

:-\
hey guys

you see im making this site…with a dynamically loaded mp3

so on an independent frame i put this in ACTIONS

mySound = new Sound();
mySound.loadSound(“NELLY_NUMBER_ONE.mp3”, true);

and then on another layer…
i have two buttons

STOP button(to stop the dyn. loaded mp3)

with this action

on (release) {
stopAllSounds();
}

and a PLAY button(to play the dyn. loaded mp3 just in case the user wants to play mp3 after s(he) has stopped it using the STOP button) the actions on this button is

on (release) {
mySound = new Sound();
mySound.loadSound(“NELLY_NUMBER_ONE.mp3”, true);
}

the problem i have is that after pressing stop…it does not play again when i press the play button…

whats going on guys?

can you help a brudda out?

thanks in advance

start.onRelease=function(){
mysound=new sound();
mysound.loadsound(“song.mp3”,true);
mysound.start();
}
stop.onRelease=function(){
mysound.stop();
}