xxxxxxxxxx
34
function setup() {
createCanvas(400, 400);
let ta = createElement("textArea", "line 1\nline 2");
ta.id("ta");
ta.position(50,50);
ta.attribute("rows", 10);
ta.attribute("cols", 40); // wide enough for nnn:hhhhhh.
ta.elt.style.fontSize = "18";
ta.elt.style.fontFamily = "Monaco"; // fixed width font
// ta.elt.style.overflow = "auto";
}
function draw() {
background(220);
}
function keyPressed() {
prt("keyPressed, key", key);
// if(key === "Enter") return false;
}
function keyTyped() {
prt("keyTyped, key", key);
if(key === "Enter") return false;
}
function prt(args) {
console.log(args);
}