Flash Animation: Seminar On
Flash Animation: Seminar On
Flash Animation
by :-
Kirti Pagariya
BTBTC08062
B.Tech(C.S.) V Sem
TOPICS
1. Layers
2. Timeline and frames
3. Mask
4. Motion Tween & Guide
5. Shape Tween
6. Alpha & Blur Property
Layers
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
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