ryanSmithART.com/courses/2015/382





week#10


**Talk about ART 388 "Art on the internet"


talk about "PROJECT B"

- I will help you with your code this week, so have something started.
- You should have something like this...


talk more about Variables

Let's talk about what you want to do for the rest of the semester :
More Flash / AS3.0 | Processing | Flash Game? | more web pages javascript/jQuery?

Project B Examples:
Robot | Pet Monster | Telekinetic Helmet | Rocket | Missile Turret | Study Animation | Toad



FLASH

Content on this page requires a newer version of Adobe Flash Player.

Get Adobe Flash player

Download : MOUSE-OVER.fla






study for quiz
Wed. April 8th :

Keyboard Shortcuts:
What does F5 do?
What does F6 do?
command return? (or command and enter)?
option F9?

Time Line:
If you see a dotted line in the time line, what does it mean?
What is the difference between a frame and a keyframe?

Tweens:
What is the difference between a motion tween, a shape tween, and a classic tween?

Sound:
I talked about two types of sound (event and streaming). What's the difference?

Chunks:
What are the three sets of frames (or animations) in a chunk?

Buttons:
After you make a button, why it it important to give it an instance name?

Scripts:
What does the command gotoAndPlay(10); do?
What do you need to type in the Actions panel to add a comment to your code?
How do you declare a variable?

After the following code runs, what's a?

var a: int;
a=5;
a=a+6;

After testing following code, what will you see in the output panel?
var a: int;
a=10;
a=a+6;
trace(a);

After testing following code, what will you see in the output panel?
var a: int;
a=10;
trace(a);
a=a+6;

After the following code runs, what's a?
var a:int;
a = 22;
if (a>0) { a=10; }
else { a=99; }

After testing following code, what will you see in the output panel?
var a:int;
a = 5;
a = 7;
if (a>6) {trace(a+20);}
else {trace(a+10);}

Fill in the blanks to make my "firstButton" start playing frame 30 :

_______________.addEventListener(Mouse_____________.CLICK, clickHandler);

function _____________ (evt:Object):void{goto______________(________);}




HOME WORK

- Finish & upload "PROJECT B" by Mon. April 6th
- study for quiz Wed. April 8th