hi all,
in a swing application i'm developing, i need to give a feature that,
certain button click event should be fired when a predefined key is
pressed. i can't use mnemonics because it need a "alt+key" combination
rather than a single key presses. please advice..
Chanchal
NullBock - 28 Nov 2005 12:56 GMT
Use the KeyStroke class:
KeyStroke.getKeyStroke(KeyEvent.VK_F1,
java.awt.event.InputEvent.ALT_MASK);
Walter Gildersleeve
Freiburg, Germany
______________________________________________________
http://linkfrog.net
URL Shortening
Free and easy, small and green.
Chanchal - 30 Nov 2005 06:02 GMT
Hi, Thanx for that input. but i'm still slightly confused. can u give
me an exmaple. say i have a JFrame "myFrame" which has a button
"myButton". now i want to fire the actionPerformed of myButton where
"b" is pressed. how'll i write code for that??
thanx again
Chanchal
Roedy Green - 30 Nov 2005 06:20 GMT
>Hi, Thanx for that input. but i'm still slightly confused. can u give
>me an exmaple. say i have a JFrame "myFrame" which has a button
>"myButton". now i want to fire the actionPerformed of myButton where
>"b" is pressed. how'll i write code for that??
see http://mindprod.com/jgloss/event11.html

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.