Tuesday, March 27, 2012

3/27/12

All students need one "in class" meeting btween March 27th and the end of class on April 3rd. These need to be scheduled by the end of class today, 3/27/12.

Thursday, April 5th will be an in class day to do the last troubleshooting with tech problems.

All projects must be finished files by Tuesday, April 10th. The .fla and .swf files will be turned in on April 10th on disc. Environmentally conscious or generally considerate students may put projects from several students on a single disc.

Tuesday, March 13, 2012

DO NOT USE ON PUBLIC COMPUTERS

/*The BUTTON INSTANCE below loads an external movie clip
AND moves the main timeline to frame 5 simultaneously
*/

var myLoader1:Loader=new Loader ();
timeline_Sam.addEventListener(MouseEvent.CLICK, swf1content);
function swf1content(myevent1:MouseEvent):void {
var myURL1:URLRequest=new URLRequest("circlesZ.swf");
myLoader1.load(myURL1);
addChild(myLoader1);
gotoAndStop(5);
}

//The code below determines the position of the external movie clip load

myLoader1.x = 150
myLoader1.y = 150
/*This METHOD stops the entire timeline:
We won't move until you click a button.
*/
stop();

/*The BUTTON INSTANCE below moves us to Frame 2 on the main timeline:
(but has no effect on the movie clip timelines)
*/

tlf_2.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler2);
function mouseDownHandler2(event:MouseEvent):void {
gotoAndStop(2);
}

/*The BUTTON INSTANCE below moves us to Frame 3 on the main timeline:
(but has no effect on the movie clip timelines)
*/

tlf_3.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler3);
function mouseDownHandler3(event:MouseEvent):void {
gotoAndStop(3);
}

/*The BUTTON INSTANCE below moves us to Frame 4 on the main timeline:
(but has no effect on the movie clip timelines)
*/

tlf_4.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler4);
function mouseDownHandler4(event:MouseEvent):void {
gotoAndStop(4);
}