Language \ Environment \ Comparison
 
Index
 
  The Processing 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: reas at groupc.net
Name  

mouseReleased()

   
Examples  
// Click within the image to change 
// the value of the rectangle 
 
int value = 0; 
 
void loop() { 
  fill(value); 
  rect(25, 25, 50, 50); 
} 
 
void mouseReleased() 
{ 
  if(value == 0) { 
    value = 255; 
  } else { 
    value = 0; 
  } 
} 
Description   The mouseReleased() function is called every time the mouse button is released. When using a mouse with more than one button, only the left button is detected.
   
Syntax  
mouseReleased()
   
Returns   None
   
Usage   Web & Application
   
Related   mouseX
mouseY
pmouseX
pmouseY
mousePressed
mousePressed()
mouseMoved()
mouseDragged()
   
© 2004 - 2001 Massachusetts Institute of Technology and Interaction Design Institute Ivrea
Processing is an open project initiated by Ben Fry and Casey Reas