can you tell me the keycodes for Java Robot class.
For example, to press Enter we use:
a.keyPress(KeyEvent.VK_ENTER);
a.keyRelease(KeyEvent.VK_ENTER);
I want to press these sysmbols > and < sign. What keyword or code should i use?
Thank you.
Assuming you mean
java.awt.event.KeyInput, then a quick glance at the documentation suggests thatKeyInput.VT_LESSandKeyInput.VT_GREATERwould correspond to the<and>keys.