| Name | noCursor() |
|---|---|
| Examples | // Move the mouse left and right across the image
// to see the cursor change from a cross to a hand
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() |
| Returns | None |
| Usage | Web & Application |
| Related | cursor() |