Re-load movie button

What would the action be for a button that would restart a movie. Or that is a button that would send the user back to the beginning of the movie, Ie. Frame 1. Thanks.

on(release){
     _root.gotoAndPlay(1)
}

or if you want to go to specific sceneā€¦

on(release){
     _root.gotoAndPlay("scene", 1)
}