This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.
| 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 or in full screen (Present) mode. | 
| Syntax | noCursor() | 
| Returns | void | 
| Related | cursor() | 
