keyReleased() Input/Output Keyboard Web & Application keyReleased_.jar // Click on the image to give it focus, // and then press any key int value = 0; void loop() { fill(value); rect(25, 25, 50, 50); } void keyReleased() { if(value == 0) { value = 255; } else { value = 0; } } The keyReleased() function is called once every time a key is released. As a general rule, nothing should be draw within the keyReleased() block. void keyReleased() { statements } None keyPressed key keyCode keyPressed() 1.0 Function Core