• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/22

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

22 Cards in this Set

  • Front
  • Back
What are the 3 symbol types in flash? Describe each.
Graphic - mainly for animation, cannot use actionscript.
Button - quickly add basic functionality and interactivity.
MovieClip - treated like buttons or graphics and can have animations inside.
What is so special about MovieClips?
movieclips inside movieclips, timeline can control itself (or by actionscript) more versatile.
Is it possible to have MovieClips inside of MovieClips?
yes
What is the difference between a symbol in the Library and on the stage?
The symbol in the library is the master copy of the symbol. Does not add file size.
What is the difference between motion tween and shape tween?
Motion tweening only works with symbol instances, one symbol per tween per layer, never apply to empty keyframes. Shape tweens only work with shapes and use only when you want to morph one shape into another shape.
How can you help Flash line up angles and lines when using Shape Tweens?
shape hint
How can you implement timing to suggest weight?
easing
ease-in starts slowly and speeds up
ease-out starts fast and slows down
What is anticipation, what is overshoot, how are they related?
anticipation is getting the momentum going before the action begins. overshoot is where the object goes beyond the stopping point and then settles back
Is it possible to have flash inside of an HTML document that validates?
yes
How can you include alternate HTML content to a Flash interface?
Create a complete HTML site that would show up in the event the user didn't have the Flash Plug-in.
How can you change properties of a MovieClip?
just go the the property inspector
How can you reference MovieClips inside of MovieClips with ActionScript?
using instance names
What tags are available for HTML formatting of Textfields in Flash?
anchor, bold, break, font, italic, list, paragraph, underline, image
What does the trace function do in Actionscript?
command that will send some type of data to the output window.
What are the 3 instance name rules?
don't use spaces (_ instead), camel case (ie myFirstInstanceName) and don't start with a number.
What is the event that triggers when the user clicks on a MovieClip?
MouseEvent.CLICK
What is an event?
when something happens, different events can occur to different objects.
What is a function?
A named group of statements. We can "call" them when we are ready to execute those statements.
How can you request that a function be run when a specific event happens?
myClip_mc.addEventListener (MouseEvent.CLICK, onClickHandler);
function onClickHandler (e) {
altClip_mc.x = altClip_mc.x + 10;
}
What do you need to include when creating a function that will be triggered by an event?
Must include a letter within the parenthesis.
If you use a pre-built function (method) without a MovieClip name in front of it, what timeline will process the function?
the main timeline or the current timeline
How can you create a reference to the MovieClip that received the event from with a function?
Event.target is used to reference a MovieClip that was clicked.