String name="Andrew Haarsager"; PFont myFont; int ypos; void setup(){ size(400,600); background(0); frameRate(60); myFont = loadFont("Coolvetica-48.vlw"); ypos = 0; } void draw(){ fill(0,5); rect(0,0,width,height); //these last two lines are the neat fading trick fill(255); textFont(myFont, 40); //text(name,random(width),random(height)); for (int i=0; i < name.length(); i++){ // i++ is the same as [i = i+1] char letter = name.charAt(i); text(letter,random(width),ypos); } ypos++; if (ypos > height){ ypos = 0; } }