I am trying to make a game in Flash using Action Script 3,
I have everything in the game and the game works, but I am trying to add a restart function so the game will go back to the start of the level when you pres the 'R' key.
My game starts off with a title screen on Frame 1, and there are 2 levels, 1 is in frame 2 and the other is in frame 3.
When you click the level you want on the title screen it takes you to the frame which has the required level in it by using a gotoAndStop
function click_handler(event:MouseEvent) :void
{
gotoAndStop(2);
}
But what I want it to do is when I press 'R' i want it to reload everything in frame 2, what I have tried is
stage.addEventListener(KeyboardEvent.KEY_DOWN, resetGame);
function resetGame(e:KeyboardEvent):void
{
if (e.keyCode == 82)
{
gotoAndStop(2);
}
}
But this does not seem to work.
If anyone can tell me the correct way of doing this I would be very greatful.