Meta ? as KeyStroke from resourse file

On Mac, help called by 'meta ?' combination

I have all my serources in properties file and i need to initialize accelerator from string.

Question:

i can write "ctrl E" in resource and KeyStroke.getKeyStroke("ctrl E") will return to me correct KeyStroke

How can i get the same for "meta ?" combination ?

Since character '?' is not defined in KeyEvent.VK_XX constants getKeyStroke returns null. Is there any way to handle '?' to parse it correctly?

[489 byte] By [Dan_Koldyra] at [2007-10-2 6:21:43]
# 1
Just a guess:KeyStroke stroke = KeyStroke.getKeyStroke("shift meta pressed SLASH");
joene19a at 2007-7-16 13:23:32 > top of Java-index,Desktop,Core GUI APIs...
# 2
Right, that's it. Rather simple, just confused between PC/MAC development :)
Dan_Koldyra at 2007-7-16 13:23:32 > top of Java-index,Desktop,Core GUI APIs...