Loading...
Logo
Processing Forum

Using F1 - F12

Answered
  • Need more info
  • Answered
  • Working on it
in Programming Questions  •  3 years ago  
Hello!
I would like to use the keys F1 to F12 in Processing.
I searched for some help, but what I found didn't work.
It would be nice, if you can give me the codes or the Ascii to use the keys.

Thanks a lot!

Replies(1)

Re: Using F1 - F12

3 years ago
You should probably read about coded keys - see keyCode.

In any case, this should help you:

Copy code
  1. void keyPressed() {
  2.   if (key == CODED) {
  3.     if (keyCode == KeyEvent.VK_F1)
  4.       println("f1");
  5.   }
  6. }