xxxxxxxxxx
36
var button;
var posX = 100;
var posY = 200;
var bgCol = 0;
var textInput;
function setup() {
createCanvas(400, 400);
//button
button = createButton('Push Me');
button.position(10, 50);
button.mouseReleased(changePos);
//text input
textInput = createInput('type here');
textInput.position(69, 320);
}
function draw() {
background(bgCol);
ellipse(posX, posY, 100, 100);
//print(textInput.value());
var typeUpdate=textInput.value();
fill(200,200,0);
textSize(42);
text(typeUpdate, 100, 200,200,200);
}
function changePos() {
print('hello');
posX = random(width);
posY = random(height);
bgCol = random(255);
}