Usage of VK_PROPS
Hi everyone!
I just tried binding the VK_PROPS key on a swing GUI.
I used the input map of a JTree to trigger an action. That works fine if I use somehting like
String action ="ctxPopup";
this.tree.getInputMap().put(KeyStroke.getKeyStroke("F2"), action);
but when using
this.tree.getInputMap().put(KeyStroke.getKeyStroke("PROPS"), action);
which also generates a valid KeyStroke being listed in the map, I may hit the props key and nothing happens.
Now, am I completly wrong with the PROPS key? Isn't that the key on bottom right between the windows & CTRY key commonly behaving like a right mouse-click? And if that's not the case, which is the VK for that key?
Thanks in advance,
Sebastian

