float move; float move2; float move3; void setup(){ size (300,120); background(255,0,0); framerate(5); } void draw(){ move = random(80,85); move2 = random(80,85); move3 = random(80,85); PFont myfont; myfont = loadFont("Frutiger-Light-48.vlw"); textFont(myfont, 80); fill(50,0,0); text("red",move,move2); textFont(myfont, 80); fill(155,0,0); text("red",move2,move3); textFont(myfont, 80); fill(255,0,0); text("red",move3,move); }