Question

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?

Was it helpful?

Solution

Can you see if this will work for you?

menuItem.setAccelerator(KeyStroke.getKeyStroke(
        KeyEvent.VK_W, ActionEvent.ALT_MASK + ActionEvent.CTRL_MASK ));

OTHER TIPS

Alternative:

menuItem.setAccelerator(KeyStroke.getKeyStroke("control alt W"));
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top