Top Banner
Macromedia Flash 5 Advanced Level Course
21

Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Dec 21, 2015

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Macromedia Flash 5

Advanced Level Course

Page 2: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Using Actions

Toolbox List Actions List

Parameters area

Add/Delete a Statement Move Action Up/Down

Expand/Collapse Parameters area

Insert Target Path

Page 3: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Frame Label

• Frame Labels are used to name specific Keyframes

• Frame Labels can be attached to Keyframes only

Page 4: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Frame Action

• Frame Actions are used to instruct the movie to do something when the Playhead reaches a specific Keyframe

• Frame Actions can be assigned to Keyframes only

Page 5: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Button Action

• Button Actions are used to instruct the movie to do something when the user clicks on the button or rolls the mouse over it

Page 6: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Movie Clip Action

• Movie Clip Actions are used to instruct the movie to do something when the movie clip loads or reaches a certain frame in its own timeline

Page 7: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Complex Movie Clip Actions

• Movie Clips can be very complex and contain other symbols inside them like Buttons, Graphics and other Movie Clips

Page 8: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Variables

• Variables are a temporary place to store information that you want to use over and over again while a movie is running

• Conditional Statements allow the movie to make decisions based on the condition that you have specified

• Operators are used in the Conditional Statements or in the Expressions

Page 9: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Properties

• Each object has Properties that can be changed during the authoring

• There are built-in properties that come predefined in Flash

Page 10: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Input and Output

• The Input Text is used as a variable that will receive its value from the user input

• The Dynamic Text is used as a variable that will display its value on the screen

Page 11: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Dot Notation

• The Dot Notation in the ActionScript is a way of expressing a path through a movie

Page 12: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Using Smart Clips

• A Smart Clip is a type of a Movie Clip that has programming code encapsulated in it so that a non-technical person can use it without having to know how it works

• Flash comes with a set of Smart

Clips in the Common Library

Page 13: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Scenes

• Scenes are used to organize your movie into sections

• The most common use of multi-scenes is to create a separate scene for the preloader, the introduction, and the main movie

Page 14: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Multiple Movies

• Having several movies that are loaded only when needed will improve:

– Download time

– Project Management

– Team work

Page 15: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Hyperlinks

• Hyperlinks can be attached to the button or the text

• This means that when users clicks the button, or the text link, they will hyperlink to the new website

• Hyperlinks use the following HTML code:– http://www.macromedia.com– www.macromedia.com is the web address– http:// is the protocol that Internet browsers use to access

websites

Page 16: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Targets

• You can specify the Target Window or Frame where you want the new page to appear

Page 17: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Email

• Email links can be attached to the button or the text

• This means that when the user clicks the button, or the text link, the default Email program will open to send an email to the Email link address

• Email links use the following HTML code:– mailto:[email protected]

[email protected] is the email address

– mailto: is the command to send an email

Page 18: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

The Bandwidth Profiler

• The Bandwidth Profiler helps you find the problem areas in your movie, like the frames that take to long to download

Page 19: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Optimizing Movie Components

• Optimizing movie components will decrease the movie file size and improve the download time

• We can optimize three main movie components:1. Optimizing Vector shapes will decrease the number of curves

used in each vector shape

2. Optimizing Bitmap images will decrease the pixel quality used in each bitmap image

3. Optimizing Sound files will decrease the sound quality of each sound file

Page 20: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Preloader

• A Preloader is the movie clip or a scene designed to download quickly and occupy the user’s attention while the rest of the movie is loading in the background

Page 21: Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.

Projector