xxxxxxxxxx
13
// Button (c) 2015, 2021 kouichi.matsuda@gmail.com
function setup() {
let button = createButton("押して"); // ボタンの作成
button.mousePressed(clicked); // クリックされたらclickedを実行
}
function draw() {
}
function clicked() {
text("押された !", 10, 50);
}