on (release, keyPress <Enter>) {
gotoAndStop(1) ;
password = ;
}
What this does is tell Flash that when the user clicks on the Try Again button or presses the Enter key, the movie should go back to frame one (the password input screen) and stop. It should also reset the value of password to nothing, so that it doesnt auto-populate mistakenly with the incorrect password (or the correct one).


