Reference for Processing (BETA) version 0135+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.

Name

noCursor()

Examples
// Press the mouse to hide the cursor
void draw() 
{
  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()
Parameters
Usage Application
Related cursor()
Updated on February 09, 2008 04:38:52pm PST

Creative Commons License