Difference between revisions of "P5js-Dom-Textarea"

From Digipool-Wiki
Jump to: navigation, search
Line 1: Line 1:
 +
 +
== Befehl ==
 +
 
<pre>
 
<pre>
  

Revision as of 18:45, 22 February 2021

Befehl


myInput = createElement('textarea', 'your text here');

myString = myInput.value();


Example

var myString;
var myInput;

function setup() {
  myInput = createElement('textarea', 'your text here');
  myInput.position(100, 100);
  myInput.size(200,200);
  createCanvas(400, 400);
}

function draw() {
  background(220);
  
  myString = myInput.value();
  text(myString, 20, 20);
}