Sound works ... then it doesn't

Friends,

I’m using buttons to start and stop a song file. All works well until I stop the sound and later try to start it again. Problem: Sound doesn’t play again after it’s been stopped.


on (release) {
stopAllSounds();
Sound = new Sound(this);
Sound.attachSound(“song”);
Sound.start(0, 999);
_root.RightReel.gotoAndPlay(2);
_root.LeftReel.gotoAndPlay(2);
_root.RightVU.gotoAndPlay(2);
_root.LeftVU.gotoAndPlay(2);
}

If I hit REFRESH, I’m good until I hit STOP. Same issue arises.

All helpful input appreciated!

j