Name

mousePressed

Examples
# Click within the image to change 
# the value of the rectangle

def draw(): 
    if mousePressed:
        fill(0)
    else:
        fill(255)
    rect(25, 25, 50, 50)

THIS EXAMPLE IS BROKEN

Description The mousePressed variable stores whether or not a mouse button is currently being pressed. The value is True when any mouse button is pressed, and False if no button is pressed. The mouseButton variable (see the related reference entry) can be used to determine which button has been pressed.
Related mouseX
mouseY
pmouseX
pmouseY
mousePressed()
mouseReleased()
mouseClicked()
mouseMoved()
mouseDragged()
mouseButton
mouseWheel()

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

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