I am writing Flash app (Flash Player 10, AS 3.0) that is full screen capable. I got that part sorted (allowFullscreen=true
, stage.displayState
).
I would like to give users ability to tab through the items there and activate them using space (MouseEvent.CLICK
;-). I know that any keyboard actions are blocked in full screen mode. This Adobe's devnet page suggests that starting from Flash Player 10 some keys (tab, space, arrows) are allowed in full screen mode.
That checks out in Chrome, Firefox, Opera, Safari... but not IE (IE6 at least). IE6 is simply oblivious of the keyboard. Nothing works: tab, space... except for Esc of course ;-)
Am I missing something?
What might be wrong?
May my testing on localhost affect this?