While setting up an AIR Application which asks for User-Interaction by Keyboard, i was surprised, that Keyboard-Interactions are not allowed in regular Fullscreen Mode.
After looking up in the documentation i found :
stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
This “Specifies that the Stage is in full-screen mode with keyboard interactivity enabled.”
Something i want to keep in mind, since FullScreen did not mean “no interactions by keyboard” to me!
Read More