In your MainScreen (or other Screen subclass) you could try overriding:
Code:
boolean keyDown(char key, int status, int time)
or
Code:
boolean keyControl(char key, int status, int time)
Then save the state of the key you're interested in. Just make sure you call super in your function.
-- Ian