//// Multiple Rollovers 5-3 void setup (){ size (200, 200); } void draw (){ background(255); strokeWeight(4); stroke(74,220,245); line(100, 0, 100, 200); line(0, 100, 200, 100); if (mouseX < 100 && mouseY < 100) { fill(252,41,80); //fill rect red rect (0, 0, 100, 100); } else if (mouseX > 100 && mouseY < 100){ fill(250,252,138); // fill rect yellow rect(100,0, 100, 100); } else if (mouseX < 100 && mouseY > 100) { fill(184,74,245); //fill rect purple rect(0, 100, 100, 100); } else if (mouseX > 100 && mouseY > 100) { fill(74,245,169); //fill rect green rect(100, 100, 100, 100); } }