Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Keys shortcuts, Java

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?

like image 459
nicks Avatar asked Apr 18 '26 21:04

nicks


1 Answers

Can you see if this will work for you?

menuItem.setAccelerator(KeyStroke.getKeyStroke(
        KeyEvent.VK_W, ActionEvent.ALT_MASK + ActionEvent.CTRL_MASK ));
like image 126
Bala R Avatar answered Apr 21 '26 10:04

Bala R



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!