We are about to switch to a new forum software. Until then we have removed the registration on this forum.
How do I use keyboard input to display Text on the screen using text string?
Before setup
String strInput=““;
In draw
text(strInput,144,44);
And a 3rd function:
void keyPressed() {
strInput = strInput + key;
}
Duplicate
Answers
Before setup
String strInput=““;
In draw
text(strInput,144,44);
And a 3rd function:
void keyPressed() {
strInput = strInput + key;
}
Duplicate