Name

keyCode

Examples
fillVal = color(126)


def draw():
    fill(fillVal)
    rect(25, 25, 50, 50)


def keyPressed():
	global fillVal
    if key == CODED:
        if keyCode == UP:
            fillVal = 255
        elif keyCode == DOWN:
            fillVal = 0
    else:
        fillVal = 126

THIS EXAMPLE IS BROKEN

Description The variable keyCode is used to detect special keys such as the UP, DOWN, LEFT, RIGHT arrow keys and ALT, CONTROL, SHIFT. When checking for these keys, it's first necessary to check and see if the key is coded. This is done with the conditional "if (key == CODED)" as shown in the example.

The keys included in the ASCII specification (BACKSPACE, TAB, ENTER, RETURN, ESC, and DELETE) do not require checking to see if they key is coded, and you should simply use the key variable instead of keyCode If you're making cross-platform projects, note that the ENTER key is commonly used on PCs and Unix and the RETURN key is used instead on Macintosh. Check for both ENTER and RETURN to make sure your program will work for all platforms.
Related key
keyPressed
keyPressed()
keyReleased()

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.