views:

43

answers:

1

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

+5  A: 

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

grapefrukt
so, is there any way to enable that?
coderex
Did you even read my response?
grapefrukt