//It's TIESTO! import ddf.minim.*; //Allows the use of sound loader AudioPlayer player; //Defines the use of the sound Minim minim; int xPos=0; PImage img; int timer = 0; float r2=random(255); float g2=random(255); float b2=random(255); //David void setup() { img = loadImage ("DJ Tiesto.jpg");//Background image size (635, 423); smooth(); minim= new Minim(this); player = minim.loadFile("Club.mp3"); //Loads the music file from the folder player.play(); //Plays the mp3 "Club.mp3" loaded noStroke(); frameRate(35);//How fast the text goes from left to right } //Jimmy void draw() { image (img, 0, 0); timer++; fill(r2, g2, b2);//Fills the letters with flashing colors. //Letters for Tiesto rect(xPos + 100, 300, 75, 10);//T rect(xPos + 133, 300, 10, 75);//T rect(xPos + 190, 300, 10, 75);//I rect(xPos + 215, 300, 10, 75);//E rect(xPos + 215, 300, 25, 10);//E rect(xPos + 245, 300, 10, 10);//E rect(xPos + 260, 300, 10, 10);//E rect(xPos + 274, 300, 20, 10);//E rect(xPos + 284, 300, 10, 40);//E rect(xPos + 220, 330, 70, 10);//E rect(xPos + 220, 365, 65, 10);//E rect(xPos + 310, 300, 75, 10);//S rect(xPos + 310, 300, 10, 40);//s rect(xPos + 310, 330, 75, 10);//S rect(xPos + 375, 340, 10, 35);//S rect(xPos + 295, 365, 90, 10);//S rect(xPos + 400, 300, 75, 10);//T rect(xPos + 433, 300, 10, 75);//T rect(xPos + 490, 300, 10, 75);//O rect(xPos + 490, 300, 75, 10);//O rect(xPos + 555, 300, 10, 75);//O rect(xPos + 490, 365, 75, 10);//O xPos=xPos+5; //Elbert if (xPos>width+20) { xPos=-550;//Where the word Tiesto reappears. } if (timer %1 == 0)//How fast the color for the text changes. { r2=random(255); g2=random(255); b2=random(255); } } void stop()//Stops the music. { player.close(); minim.stop(); super.stop(); }