I have a Java swing application in which it became necessary to work with global keyboard input keys for Windows, Mac and Linux OS. For this purpose I decided to use the jnativehook library version: '2.1.0', since it is said that it allows you to do this.
The goal is to catch a key press from the keyboard when you are inside the window of another application, namely Warcraft III.
This code works great, after launching the application, the data on the pressed buttons of the keyboard, mouse and mouse movements are displayed in the console.
Here is example how it works inside Notepad++. The code itself will be presented below at the end of the question:
But the problem is, when the Warcraft III application is focused and active, nothing happens when you press a key, mouse, and move your mouse. All my activities are not showing up in the app console.
UPDATE: jnativehook doesn't work forTotal Commander window too when it's in focus.
This is what the Warcraft III app looks like in windowed mode that runs as administrator.
Here is the sample code I am trying to use, taken from the official source:
import org.jnativehook.GlobalScreen;
import org.jnativehook.NativeHookException;
import org.jnativehook.keyboard.NativeKeyEvent;
import org.jnativehook.keyboard.NativeKeyListener;
public class GlobalKeyListenerExample implements NativeKeyListener {
public void nativeKeyPressed(NativeKeyEvent e) {
System.out.println("Key Pressed: " + NativeKeyEvent.getKeyText(e.getKeyCode()));
if (e.getKeyCode() == NativeKeyEvent.VC_ESCAPE) {
try {
GlobalScreen.unregisterNativeHook();
} catch (NativeHookException nativeHookException) {
nativeHookException.printStackTrace();
}
}
}
public void nativeKeyReleased(NativeKeyEvent e) {
System.out.println("Key Released: " + NativeKeyEvent.getKeyText(e.getKeyCode()));
}
public void nativeKeyTyped(NativeKeyEvent e) {
System.out.println("Key Typed: " + e.getKeyText(e.getKeyCode()));
}
public static void main(String[] args) {
try {
GlobalScreen.registerNativeHook();
} catch (NativeHookException ex) {
System.err.println("There was a problem registering the native hook.");
System.err.println(ex.getMessage());
System.exit(1);
}
GlobalScreen.addNativeKeyListener(new GlobalKeyListenerExample());
}
}
Questions: Why does jnativehook stop working when the Warcraft III application is in focus? As it turned out, the same situation is when Total Commander window is in focus. But it works in Notepad ++ when it's in focus. Does it work selectively somehow?
Please tell me what could be the problem. My OS is Windows 10.
Thank you in advance for your advice.