PFont font; String word = "FLIGHT"; float a,b; void setup() { size(400, 400); background(204); } void draw() { font = loadFont("28_Days_Later-48.vlw"); textFont(font); fill(0); text(word,a,b); } void mousePressed() { a=mouseX; b=mouseY; }