We are about to switch to a new forum software. Until then we have removed the registration on this forum.
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
Have you tried to println() the keyCode value when you keyPressed() "F3"? /:)