Wednesday, April 24, 2013

WHAT YOU WILL NEED TO TURN IN TO ME BY FRIDAY MAY 3:

FOLDER: BOARD GAME
Contents: all .ai, .psd, and .indd you worked on for the game.  Photo documentation of the game pieces on the board.  Photo documentation of the box.  (you may crop out mistakes and use creative framing - look at package design examples on behance)    You only need to turn in 1 set of files per group - this can be on a CD or cloud shared.

FOLDER: FLASH MANDALA
Contents: .fla and .swf file
CD, cloud shared, or RE-emailed with the subject heading ART4633C FINAL
emails with improper headings may not be opened.  This email may include your final email text (see below)

FOLDER: FINAL PROJECT
Contents: all .ai, .psd, and .fla files you worked on for the game.  Especially the map!

FINAL EMAIL:
The subject heading must be ART4633C FINAL.  (emails with improper headings may not be opened, resulting in a grade of "I")  In the email body please describe your role in, as well as your work for, both group projects.

Monday, April 22, 2013

CODE TO GO ON THE MAIN TIMELINE:


stop();

addEventListener("NEXT", next);
function next(e:Event):void{
  nextFrame();
}

CODE TO GO INSIDE THE MOVIE CLIP, ON THE ACTIONS LAYER:

stop();

bomb_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler1);
function mouseDownHandler1(e:Event):void{
  dispatchEvent(new Event("NEXT", true));
}

Friday, April 12, 2013

GIVING TREE:
Marina Quirk
MOBY DICK:
Sabrina, James, Andreia
JACK and the BEANSTALK:
Jennifer Cantor, Bailey Webb
WAR of the WORLDS:
Jennifer Laughlin, Dusty and Drew Kennedy
PRINCE CASPIAN (Narnia):
Derek Bond
FALL of the USHER:
Becca, Ashley, Dustin
TELL TALE HEART:
Sarah McFarlane, Tyler Huffman




Wednesday, April 10, 2013

Aesop's The Crane and the Fox:
Amy and Sam
FRANKENSTEIN:
Jessica, Chad, and Mervyn
ANIMAL FARM:
Brittany, Kristen, Andrea
DRACULA:
Charlie, Alex, Sarah
Aesop's The Fox and the Crow:
Kiarra
BILLYGOATS GRUFF:
Sarah, Andrea, Holley



http://2600c.blogspot.com/2012/04/8-frame-animation.html

Monday, April 8, 2013

MAKE:
TWO CHARACTERS
TWO BACKGROUNDS
WRITE:
A DESCRIPTIONS OF WHAT YOU PLAN TO TRY TO DO WITH YOUR PROJECT:
(using the alice .swf as a model)
This should of course include the name of your (at least 75 year old) text and the parts of it you plan to turn into interactive scenes

Monday, April 1, 2013

Controlling the Main Timeline and a Movie Clip Instance Timeline with Buttons on the Main Timeline


FredButtonInstanceName1.addEventListener(MouseEvent.MOUSE_DOWN, responseToMouseEvent1);

function responseToMouseEvent1(event:MouseEvent):void {
stop();
}

GeorgeButtonInstanceName2.addEventListener(MouseEvent.MOUSE_DOWN, responseToMouseEvent2);

function responseToMouseEvent2(event:MouseEvent):void {
HarryMovieClipInstanceName1.stop();
}

RonButtonInstanceName3.addEventListener(MouseEvent.MOUSE_DOWN, responseToMouseEvent3);

function responseToMouseEvent3(event:MouseEvent):void {
play();
}

HermioneButtonInstanceName4.addEventListener(MouseEvent.MOUSE_DOWN, responseToMouseEvent4);

function responseToMouseEvent4(event:MouseEvent):void {
HarryMovieClipInstanceName1.play();
}