vote up 1 vote down star
1

I'm trying to add a feature to my AIR app that can listen for (configurable) global keyboard events even when the app is minimized. Ex: CTRL-ALT-SHIFT-F12 to grab a screenshot.

I can't find any way to register a keyboard hook, and listening for keyboard events only captures them when the app has focus. Suggestions?

flag

3 Answers

vote up 1 vote down

I don't think that Adobe Air programs can process keypress events unless the application is in focus.

http://forums.adobe.com/thread/420446

Even this question regarding a Global handler for keypresses states that the application must be in focus.

link|flag
vote up 0 vote down

Can not! when stage miss the focus...

link|flag
vote up 1 vote down

Try hooking onto the stage's KeyboardEvent:

stage.addEventListener(KeyboardEvent.KEY_DOWN,KeyHandler);  

function KeyHandler(e:KeyboardEvent){
    trace ("Key Code: " + e.keyCode);  
    trace ("Control? " + e.ctrlKey);  
    trace ("Shift? " + e.shiftKey);  
    trace ("Alt? " + e.altKey);  
}
link|flag
That only works when the app has focus, what about when it doesn't? – Joel Jan 5 '09 at 4:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.