Search Our Web Design Blog...

Thursday, November 11, 2010

example

hopefully this is not blocked!

http://www.newgrounds.com/portal/view/316541

or

http://www.albinoblacksheep.com/flash/animator

or

http://www.atom.com/fun_games/animator_vs_animation/

Friday Flash Assignment

Today you will be making a new movie. It must contain the following. We will be watching these on Monday. Click on the links below to see a reminder of how to do so.

Tuesday, November 9, 2010

the code...

YOUR INSTANCE BUTTON NAME.buttonMode = true;


YOUR INSTANCE BUTTON NAME.addEventListener(MouseEvent.ROLL_OVER,animIn);
YOUR INSTANCE BUTTON NAME.addEventListener(MouseEvent.ROLL_OUT,animOut);


function animIn(event:MouseEvent):void {
event.target.gotoAndPlay("over");
}
function animOut(event:MouseEvent):void{
event.target.gotoAndPlay("out");
}
we started with button basics, now we charge onto the real deal and make a menu!!!

clock here for a step by step guide

Thursday, November 4, 2010

stopper

yourButtonsInstanceName.addEventListener(MouseEvent.CLICK, functionname);

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

Tuesday, November 2, 2010

Flash!


Today we will be getting to know Flash. Your task, once we learn the basics of timeline animation will be to make a 200 frame movie with 5+ layers and 2+ shape & 2+ motion tweens.