//I'm not stuck on the colors, I chose them for visibility's sake. PFont myFont; int miceX, miceY; void setup(){ size(800, 70); background(33, 55, 180); fontdraw(50, 55, 55); //String [] fontList = PFont.list(); //println (fontList); } void draw(){ } void fontdraw(int fontsize,int fontX,int fontY) { myFont = createFont ("TinBirdhouseItalic", fontsize); textFont(myFont); text ("We Are All Fractured Beings Now.",fontX, fontY); } void randomshatter(){ for (int i=0; i< 75; i++) { smooth(); noFill(); //randomSeed(100); seems to screw up the for function stroke(155); ellipseMode(RADIUS); ellipse(miceX, miceY, random(800), random(70)); //the way it is written can't turn into perfect circles, differnt elipse modes? stroke(0); line(miceX, miceY, random(800), random(70)); } } void mouseReleased(){ randomshatter(); } void mousePressed(){ miceX= mouseX; miceY = mouseY; }