Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I enable keyboard inputs in full screen mode?

I heard that the flash action script 3 is disabled the keyboard interaction on full screen mode. How can I enable.

like image 611
coderex Avatar asked Dec 10 '22 15:12

coderex


1 Answers

Keyboard input except for a few keys (see below) is not available in fullscreen mode for security reasons.
You can not enable these (unless you are running in Air or a standalone player)

Full-screen mode is initiated in response to a mouse click or key press by the user; the movie cannot change Stage.displayState without user input. Flash Player restricts keyboard input in full-screen mode. Acceptable keys include keyboard shortcuts that terminate full-screen mode and non-printing keys such as arrows, space, Shift, and Tab keys. Keyboard shortcuts that terminate full-screen mode are: Escape (Windows, Linux, and Mac), Control+W (Windows), Command+W (Mac), and Alt+F4.

http://livedocs.adobe.com/flex/3/langref/flash/display/Stage.html#displayState

like image 124
grapefrukt Avatar answered Dec 24 '22 01:12

grapefrukt