Adobe AIR Keyboard Hook

…衆ロ難τιáo~ 提交于 2019-11-30 00:13:43

问题


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?


回答1:


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.




回答2:


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);  
}



回答3:


With NativeProcess, you could write an external app pretty easily to listen for global keyboard events and send them back to your AIR app. I might be going down this path now...




回答4:


I'm testing my Air application in Flash CS5 and I need to disable keyboard shortcuts so I can test my own shortcuts. I can get ctrl-F to work, but ctrl-C will not.

I notice that my keyboard shortcuts WILL work if it's a standard AS3 file that I'm testing.




回答5:


One method I use is to monitor the clipboard in the AIR app, that only allows you to react based on copied data, but it's at least sort of a way to listen for input when the app does not have focus.



来源:https://stackoverflow.com/questions/370449/adobe-air-keyboard-hook

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!