float bsize; PImage p; int x=0; int y=70; String iwant="erikburke"; PFont sFont; void setup(){ size(1100,200); smooth(); background(255); //frameRate(230); bsize=50; noStroke(); sFont=loadFont("AbadiMT-CondensedExtraBold-48.vlw"); p=loadImage("processing2.png"); } void draw(){ //background(255); } void mouseMoved() { println("woah"); fill(random(255),random(105),random(205)); strokeWeight(random(0,2)); bsize=random(5,60); image(p,mouseX-115,mouseY); ellipse(mouseX,mouseY,bsize,bsize); textFont(sFont, 40); fill(150,150,150,90); text(iwant,x,y); x+=130; }