//moving_face by paul glennon int x = -200; // I think this sets the start point out of the stage. PImage pauly; // confirms image name. void setup(){ // void means returns no value. size(300,200); background(0); framerate(7); } void draw(){ pauly=loadImage("face.jpg"); background(0); image (pauly,x,20); // displays the image from point (0,0) x=x+10; }