//program displays 2 images of a bird //user switches between 2 colors with //left and right mouse buttons PImage b; PImage c; void setup(){ size(365,440); b = loadImage("Bird058color6pic30.jpg"); c = loadImage("Bird058color2_30.jpg"); } void draw(){ } void mousePressed(){ if (mouseButton == LEFT){//left click mouse to show 1st image image(b, 0,0); }else if (mouseButton == RIGHT){//right click to show 2nd image image (c, 0,0); } else { noTint(); } }