xxxxxxxxxx
19
let button;
function setup() {
createCanvas(400,400);
button = createButton("BOOP!");
button.mouseClicked(moveButton);
button.size(200,100);
button.position(10,10);
button.style("font-family", "Bodoni");
button.style("font-size", "48px");
}
function draw (){
background(255);
}
function moveButton() {
button.position (random(width), random(height));
}