For ICM final I am teaming up with Kemeya Harper to create an Alphabet Application. It will include a menu screen displaying the letters of the alphabet. Each letter will be a button that will trigger a short animation about that letter,pronunciation sounds,and other goodies. We sketched out a couple of options for a menu display,either as a separate interactive screen or as static buttons. We are imagining different actions will be triggered by rollovers,clicks,etc.
The animations will be fairly short and completed in After Effects. We did a storyboard for the letter A,which stands for Anarchy. 
I started coding an array of letter form images in processing that can be clicked through.
int totalImages=10;//total # of images
int intialImage=1;//intial array number
int x=950;
int y=0;
int w=50;
int h=50;
//declare image
PImage[] images = new PImage[totalImages];
void setup(){
background(255);
size (1000,800);
for (int i=0;i<images.length;i++){
images[i]=loadImage(“letter”+ i + “.jpg”);
}
}
void draw(){
//display each image
image(images[intialImage],0,-40);
noStroke();
fill(175,3);
rect(x,y,w,h);
}
void mousePressed(){
background(255);
if (mouseX >x &&mouseX <x+w &&mouseY >y &&mouseY<y+h){
intialImage = (intialImage + 1) % images.length;
}
}

