First off : I'm using an azerty keyboard. I want to press the button which is in the upper left corner, just below 'escape'. I believe it's the '~' for qwerty keyboard (for azerty it is '²')
I unsuccesfully search for it's key code then I found this : java.awt.event.KeyEvent not capable of fully mappin AZERTY keyboard?
Running his code I got this :
Pressed : unknown keyCode: 0x0 / ² code = 0
By inspecting the keyEvent object while debugging I got this
extendedKeyCode = 16777394
keyLocation = 1
id = 401
How could I solve this problem? Do you think I could make my own Implementation of keyEvent, build one that is similar then raise it?
Thanks.