I am trying to implement a start menu in my game and I created a image of the screen with the instructions as well as a Press "enter" to begin.
In the act method for my Startmenu class I have a checkKeys method that checks if enter is pressed and removes the object if it is. In my world class I have the startmenu being placed into the world.
My problem is, once I click run the entire scenario runs where all my actors methods are called so basically the game is running in the background, and after I press enter and the Startmenu disappears your character could already be dead.
I've been experimenting with the Greenfoot.start() and delay methods but haven't had luck figuring the right way to use them in this instance.
Any help or advice would be appreciated.
Thank you!

