xxxxxxxxxx
24
// Create an input field and display text the user types into the input field on the canvas as they type it.
//Challenge: Delete all of the text when the user hits ENTER/RETURN key. Hint. You should consult the documentation for all p5.Elements
let textBox;
function setup() {
createCanvas(400, 400);
textBox = createInput("Type here!");
}
function draw() {
background(220);
let msg = textBox.value();
textSize(20);
textAlign(CENTER);
text(msg,200,200);
}
function keyPressed(){
if (keyCode === RETURN) {
textBox.value("");
background(220);
}
}