0% found this document useful (0 votes)
35 views22 pages

Flash Animation: Seminar On

This document summarizes a seminar on creating flash animations. It discusses different animation techniques that can be used in flash, including layers, keyframes, motion tweens, shape tweens, and alpha and blur properties. It also mentions using flash to design entire websites and create interactive content like games. The seminar provides an overview of the basic elements needed to create a first flash animation, such as layers, timelines, masks, motion guides, and tweening.

Uploaded by

Kirti Pagariya
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views22 pages

Flash Animation: Seminar On

This document summarizes a seminar on creating flash animations. It discusses different animation techniques that can be used in flash, including layers, keyframes, motion tweens, shape tweens, and alpha and blur properties. It also mentions using flash to design entire websites and create interactive content like games. The seminar provides an overview of the basic elements needed to create a first flash animation, such as layers, timelines, masks, motion guides, and tweening.

Uploaded by

Kirti Pagariya
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 22

Seminar on

Flash Animation

by :-
Kirti Pagariya
BTBTC08062
B.Tech(C.S.) V Sem
TOPICS

1. Different techniques used for creating


variety of animations

2. Designing a website in flash


About

Flash is a program for creating interactive, animated


content.

Not only is Flash content animated, it is interactive,


allowing the user to experience unique results based on
input.

This generates creative gaming content such as the


"Who Wants to be a Millionaire" online game.

Also a whole website could be created using flash


Basic things

Six basic things u need to know for creating


your first animation:

1. Layers
2. Timeline and frames
3. Mask
4. Motion Tween & Guide
5. Shape Tween
6. Alpha & Blur Property
Layers

Layers are transparent sheets of papers stacked on top of each


other.

In the areas of a layer that don't contain content, you can see
through to content in the layers below.

For example, you can keep background art on one layer and
navigational buttons on another.

Additionally, you can create and edit objects on one layer without
affecting objects on another layer.
e l i n e
n d T im
me s a
Fra
KEYFRAMES AND FRAMES

•Keyframes are those frames in which you define a


change in object’s properties.
•They are created using f6 key.
•Example – changing position of a body
changing shape of a body
In these 2 situations keyframes must be created.

•Frames are created by flash itself. By creating motion


tween between 2 keyframes or just by hitting f5 key
Easiest way to create animation
• Just draw 2 different shapes
• Loop them again and again and it will give you
an animation effect.
?? ???
Ma sk
w e e n
ti o n t
Mo &
gu i de
o ti o n
M
A Motion tween
A motion guide
Shape tween
Alpha and Blur Properties
import mx.transitions.Tween;
import mx.transitions.easing.*;
Action
var startX:Number = productsSub_mc._x; Script ng w ebsite
m a ki
Code for
var mytween1:Tween;
var mytween2:Tween;

products_btn.onRollOver = function() {

mytween1=new Tween(productsSub_mc,"_alpha",Regular.easeOut,0,100,8,false);
mytween2=new Tween(productsSub_mc,"_x",Regular.easeOut,startX,startX+179,8,false);

services_btn.onRollOver = function() {
if(productsSub_mc._alpha>0)
{
mytween1.stop();
mytween2.stop();
productsSub_mc._alpha=0;
productsSub_mc._x=startX;
}

}
productsSub_mc.videos_btn.onRelease = function () {
getURL("videos.html");
}
Thank You

You might also like