-
Bug
-
Resolution: Won't Fix
-
P4
-
5.0u3
-
sparc
-
solaris_10
Robot incorrectly dispatch VK_DELETE on Solaris 10 sparc. It prints VK_PERIOD (0x2E, ".") instead of VK_DELETE (0x7F). It blocks our UI tests of NetBeans IDE.
When you run attached jar, it should not print "." at the end but delete one char. The source code is as follows:
System.out.print("Should not print \".\" but delete last char from 1234: 1234");
Robot robot = new Robot();
robot.keyPress(KeyEvent.VK_DELETE);
robot.keyRelease(KeyEvent.VK_DELETE);
System.out.println("");
###@###.### 2005-06-06 09:08:15 GMT
When you run attached jar, it should not print "." at the end but delete one char. The source code is as follows:
System.out.print("Should not print \".\" but delete last char from 1234: 1234");
Robot robot = new Robot();
robot.keyPress(KeyEvent.VK_DELETE);
robot.keyRelease(KeyEvent.VK_DELETE);
System.out.println("");
###@###.### 2005-06-06 09:08:15 GMT
- relates to
-
JDK-6977762 F11 and F12 keys are not reported on Solaris
-
- Open
-
-
JDK-4966137 Robot presses Numpad del key instead of normal Del key
-
- Closed
-