PFont myFont; void setup() { size(400, 200); background(255); fill(0); myFont = loadFont("Verdana-48.vlw"); textFont(myFont, 48); } void draw() { // auch wenn draw() nichts macht, muss die // Funktion im Code stehen! } void keyPressed() { fill(0, random(255), random(255), 100); text(key, random(width), random(height)); }