xxxxxxxxxx
24
function setup() {
createCanvas(320, 240);
background(255, 220, 220);
noStroke();
}
function draw() {
}
function keyPressed() {
fill(0, 125, 62);
textSize(16);
if (keyIsPressed == true) {
if (key == 'a') {
// draw a phrase onto a random x and y location
text("ack!", random(width), random(height));
} else {
// draw the key onto a random x and y location
text(key, random(width), random(height));
}
}
}