|
|
|
How to make a simple button animation using tweens
Author: PopCode | Email Website : myfiles.netto.ro/Tutorials/Animated-Button-Tutorial.html
Advertisement
Start Page 2
Using the Tweening Engine:
For a starters, install the “TweeningEngine.mxp” extension (you just have to double-click on it and it will lead you to the Extension Manager). You will have to open/reopen Flash.
Create a new document. Set the frame rate to 35.
Make a movie clip containing a rectangle with rounded corners, another one smaller as height and with a lighter color on top the first one and alpha set to 50, then add the text for the button.
Name them and also name the instances. (I have backofbutton, frontofbutton with their corresponding instances: BoB and FoB).
Make another movie clip to contain all of the above mentioned movie clips and text. Name it MyButton – instance name: MyB.
From now on there will be only a bit of coding to be done, but you shouldn’t worry, it will end with a fine animation after exactly 6 lines.
The first two are used to import the tweening classes and the flash transition/easing class and they should be inserted in the Actions window of the first frame inside “MyButton” movie clip.
import xtd.tweening.*;
import mx.transitions.easing.*;
import flash.filters.DropShadowFilter;
Download Source File
We hope the information helped you. If you have any questions
or comments, please don't hesitate to post them on the
Forums section
Submit your Tutorial at Click Here
|
|
|