Replay button in .fla with mupltiple scenes

Hi,
I have a replay button on the last scene of my .fla and I want - when clicked - to
replay the .fla from frame 1, Scene 1.

I’ve used the following code:

*stop();

ReplayBtn.addEventListener(MouseEvent.CLICK,onClick);

function onClick(event:MouseEvent):void {
gotoAndPlay(1, “Scene 1”)
}*

on the last frame of “as” layer, but nothing happens.