textAlign(CENTER, CENTER); textSize(40); var draw = function() { background(222, 33, 55); stroke(25, 0, 0); line(200, 0, 200, height); if(mouseX > 200) { text("Haha", 200, 200); }else{ text("I like this!", 200, 200); } };