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  

noCursor()

   
Examples  
// Press the mouse to hide the cursor 
void loop() 
{ 
  if(mousePressed == true) { 
    noCursor(); 
  } else { 
    cursor(HAND); 
  } 
} 

Description   Hides the cursor from view. Will not work when running the program in a web browser.
   
Syntax  
noCursor()
   
Returns   None
   
Usage   Application
   
Related   cursor()
   
© 2004 - 2001 Massachusetts Institute of Technology and Interaction Design Institute Ivrea
Processing is an open project initiated by Ben Fry and Casey Reas