Mouse Libraries

  1. Autohide mouse cursor plug in

http://download.cnet.com/AutoHideMouseCursor/3000-2084_4-75676781.html

2. Processing basic mouse function examples

Example

// Move the mouse left and right across the image

// to see the cursor change from a cross to a hand

void draw()

{

  if (mouseX < 50) {

    cursor(CROSS);

  } else {

    cursor(HAND);

  }

}

3. Mouse rollover function

 

Leave a comment