F3 key detection

edited October 2015 in Using Processing

in processing 3.0 i do not know how to detect F3 being pressed. I tried putting this in a draw loop void draw() { if(keyPressed == true) { if(keyCode == 144) { println("TEST"); } } } but it didnt work

Answers

  • Answer ✓

    Have you tried to println() the keyCode value when you keyPressed() "F3"? /:)

Sign In or Register to comment.