xxxxxxxxxx
17
function setup() {
createCanvas(100, 100);
background(200,200,0);
cursor('grab'); //_____ seems to work too
}
/*
// Move the mouse across the quadrants to see the cursor change
function draw() {
background(200,200,0);
line(width / 2, 0, width / 2, height);
line(0, height / 2, width, height / 2);
if (mouseX < 50 && mouseY < 50) cursor('crosshair');//CROSS
else if (mouseX > 50 && mouseY < 50) cursor('progress');
else if (mouseX > 50 && mouseY > 50) cursor('help');
else cursor('grab');
}
*/