PFont font; String msg = "GraphicCoding"; float ts; void setup() { size(800, 300); font = loadFont("Verdana-Bold-96.vlw"); textFont(font, 96); textAlign(CENTER); ts = 0; } void draw() { background(0); //fill(255-ts*2); textSize(ts); text(msg, 400, 200); ts += 1; if (ts >= 96) { ts = 0; } }