I want to add a hotkey to JMenuItem. I learned how to add key that look like CTRL+SOME_KEY. But what I need, is a triple hotkey. Somthing like CTRL+ALT+W. I want to add a hotkey to JMenuItem. But how should I create such hotkey?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Can you see if this will work for you?

menuItem.setAccelerator(KeyStroke.getKeyStroke(
        KeyEvent.VK_W, ActionEvent.ALT_MASK + ActionEvent.CTRL_MASK ));
link|improve this answer
feedback

Alternative:

menuItem.setAccelerator(KeyStroke.getKeyStroke("control alt W"));
link|improve this answer
Close, but you don't use the plus signs in the key stroke string. – camickr Apr 27 '11 at 21:22
Thanks. I removed them. – Stefan Endrullis May 6 '11 at 13:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.