We have a user provided string that may contain unicode characters, and we want the robot to type that string.
How do you convert a string into keyCodes that the rob
i think this is a bit late but...
Robot robot = new Robot(); robot.keyPress( KeyEvent.VK_DEAD_ACUTE); robot.keyPress( KeyEvent.VK_A ); robot.keyRelease( KeyEvent.VK_A ); robot.keyRelease( KeyEvent.VK_DEAD_ACUTE );
that just type an "á"