Tuesday, October 23, 2012

1. Honoré Daumier
2. Henri Marie Raymond de Toulouse-Lautrec-Monfa
3. Aubrey Beardsley
4. Winsor McCay
5. Milton Caniff or Will Eisner
6. Chester Gould or Jack Kirby
7. Harvey Kurtzman or R.Crumb
8. George Herriman or E.C. Segar
9. Gary Panter or Art Spiegelman or Lynda Barry
10. Charles Schulz or Chris Ware
Please Read:
Chapter Two from Scott McCloud's Understanding Comics: http://www2.lib.uwf.edu.ezproxy.lib.uwf.edu/reserve/ART2821/6th/Fulltext.pdf

Thursday, October 11, 2012

code to use a button to move us along the timeline:
btnInstanceName.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerA);
function mouseDownHandlerA(event:MouseEvent):void {
gotoAndStop(1);
}
FUNCTIONS, METHODS, PARAMETERS: http://2600c.blogspot.com/2012/04/functions-methods-parameters.html
FLASH ACTIONSCRIPT VOCABULARY:
http://2600c.blogspot.com/2012/04/variable-variable-represents-specific.html

Monday, April 9, 2012

LINK TO EXAMPLE (ALICE)

http://www.pixelcola.net/Alice.swf

CONTROLLINNG THE MAINTIMELINE from inside a MOVIE CLIP!

buttonInstanceName1.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerButtonInstanceName1);
function mouseDownHandlerButtonInstanceName1(event:MouseEvent):void {
MovieClip(parent).gotoAndStop(10);
}