Game Menu

Im making a menu for a game and it has two buttons Start Game and Pass Word once the get to the title screen the start game is already highleted once you get there and I want you to toggle between the two buttons with the keyboard by pressing up and down arrow keys for the menu. Idea: since the game start button is already highleted strating off (means thats what button your on) then you push down which then takes you the second button Pass Word which is now highlighted and games start is not anymore. Also I would like to hide the mouse.

stick Mous.hide() wherever you dont want the mouse shown. As far as toggling between the 2 using the keyboard can you post a fla? It would be a lot easier. Basically you have to add a couple statements like this:
if(Key.isDown(KEY.UP))

then you have to change the focus. Not sure exactly how to change the focus though.