Is there anything with which i can check if lets say "space" key goes up, so not to check wether its down, i just want to get one input, not many as in Greenfoot.isKeyDown();


1 2 | String key = Greenfoot.getKey(); if ( "space" .equals(key)) { /** etc */ |