I'm trying to send keystrokes (like a virtual keyboard) from my Java code, but I encounter some issues. It works perfectly on normal applications (for example, Notepad, browsers etc.), but not on games (fullscreen or windowed mode).
This is the stripped code I'm using:
import java.awt.Robot;
import java.awt.AWTException;
import java.awt.event.InputEvent;
Robot robot;
robot.keyPress(KeyEvent.VK_A);
robot.keyRelease(KeyEvent.VK_A);
How can this problem be fixed?
Refer to "Full screen mode robot keypresses simulation".