May 3, 2010

1 Comment

How to create a flash animation tutorial

Download the source effect.zip Step 1 Create a new flash Project , New flash file > Document (shortcut key: Ctrl+J ). Set the width of your document to 300 pixels and the height to 300 pixels. Select any color as background color and set your Flash movie’s frame rate to 33 fps. Change the layer [...]

Continue reading...

April 26, 2010

0 Comments

Flash glowing text tutorial

Download the source file : textglow.zip Step 1 Create a new flash Project , New flash file > Document (shortcut key: Ctrl+J ). Set the width of your document to 300 pixels and the height to 180 pixels. Select any color as background color and set your Flash movie’s frame rate to 25 fps. Change [...]

Continue reading...

April 26, 2010

0 Comments

FLash image zoom tutorial

Download the source zoom.zip Step 1 Create a new flash Project , New flash file > Document (shortcut key: Ctrl+J ). Set the width of your document to 400 pixels and the height to 250 pixels. Select any color as background color and set your Flash movie’s frame rate to 37 fps. Change the layer [...]

Continue reading...

April 26, 2010

0 Comments

Flash dissolve tutorial

Download the source: dissolve.zip Step 1 Create a new flash Project , New flash file > Document (shortcut key: Ctrl+J ). Set the width of your document to 300 pixels and the height to 180 pixels. Select any color as background color and set your Flash movie’s frame rate to 32 fps. Change the layer [...]

Continue reading...

April 25, 2010

0 Comments

Flash blic effect

Download the source: blic.zip Step 1 Create a new flash Project , New flash file  > Document (shortcut key: Ctrl+J ). Set the width of your document to 300 pixels and the height to 180 pixels. Select any color  as background color and set your Flash movie’s frame rate to 88 fps. Change the layer [...]

Continue reading...

April 25, 2010

4 Comments

Flash rotate actionscript

Download the source rotate.zip Step 1 Create a new flash Project , New flash file  > Document (shortcut key: Ctrl+J ). Set the width of your document to 400 pixels and the height to 300  pixels. Select any color  as background color and set your Flash movie’s frame rate to 34 fps. Change the layer [...]

Continue reading...

April 25, 2010

2 Comments

Flash bevel filter as3

Download the source Bevel.zip We will learn how to apply Bevel filter using actionscript 3.0 Step 1 Create a new flash Project , New flash file  > Document (shortcut key: Ctrl+J ). Set the width of your document to 300 pixels and the height to 180 pixels. Select any color  as background color and set [...]

Continue reading...

April 25, 2010

6 Comments

Flash glow effect

Download the source glow.zip We will learn how to apply glow filter using actionscript 3.0 Step 1 Create a new flash Project , New flash file  > Document (shortcut key: Ctrl+J ). Set the width of your document to 300 pixels and the height to 180 pixels. Select any color  as background color and set [...]

Continue reading...

April 24, 2010

4 Comments

Flash cs4 vibration effect

Download the source vibration.zip Step 1 Create a new flash Project , New flash file  > Document (shortcut key: Ctrl+J ). Set the width of your document to 300 pixels and the height to 180 pixels. Select any color  as background color and set your Flash movie’s frame rate to 30  fps. Change the layer [...]

Continue reading...

April 24, 2010

3 Comments

Flash CS4 Cursor

Download the source cursor.zip Step 1 Create a new flash Project , New flash file  > Document (shortcut key: Ctrl+J ). Set the width of your document to 300 pixels and the height to 180 pixels. Select any color  as background color and set your Flash movie’s frame rate to 33  fps. Change the layer [...]

Continue reading...

April 21, 2010

5 Comments

Flash cs4 mask tutorial

Download the source: flasheff3.zip Step 1 Create a new flash Project , New flash file  > Document (shortcut key: Ctrl+J ). Set the width of your document to 300 pixels and the height to 200 pixels. Select any color  as background color and set your Flash movie’s frame rate to 33  fps. Change the layer [...]

Continue reading...

April 21, 2010

2 Comments

Flash cs4 text effects tutorial

Download the source: flasheffect2.zip We will use filters : Blur Bevel Glow Step 1 Create a new flash Project , New flash file  > Document (shortcut key: Ctrl+J ). Set the width of your document to 300 pixels and the height to 200 pixels. Select #999999as background color and set your Flash movie’s frame rate [...]

Continue reading...

April 20, 2010

9 Comments

How to create blur photo animation

Download fla file: bluranimation.zip Step 1 Find any photo which you like to use for animation Create a new flash document. Press Ctrl+J key on the keyboard (Document Properties) and set the dimensions of your document as the dimensions of photo, my photo have 300 x 180 . Select any color as background color. Set [...]

Continue reading...

April 16, 2010

6 Comments

How to create a flash banner

Step 1 Take an image to use Create a new flash document. Press Ctrl+J key on the keyboard (Document Properties) and set the width of your document to 400 pixels and the height to 264 pixels. Select white color as background color. Set the Flash movie’s frame rate to 54 and click ok. Step 2 [...]

Continue reading...

April 14, 2010

0 Comments

How to create Flash Dynamic Input Fields

We will  Create dynamic text fields inside Actionscript. We first create a new TextField object that’ll give us access to all the properties, methods and events of the TextFields class. We’ll call this TextField object textInput. var textInput:TextField = new TextField();textInput.type = TextFieldType.INPUT; textInput.border = true; textInput.height = 20; textInput.x = 100; textInput.y = 100; [...]

Continue reading...

April 14, 2010

2 Comments

How to create a dynamic flash font

Step 1 Create a Dynamic text field inside action panel and add it to the stage. This is  the code I have used. var myFormat:TextFormat = new TextFormat(); myFormat.size = 15; myFormat.color = 0×000000; var myTextField:TextField = new TextField(); myTextField.autoSize = TextFieldAutoSize.LEFT; myTextField.defaultTextFormat = myFormat; myTextField.text = “Lorem ipsum dolor sit amet, consectetuer adipiscing elit. [...]

Continue reading...

April 14, 2010

1 Comment

How to use function TextField.getCharBoundaries

Syntax: public function getCharBoundaries(charIndex:int):Rectangle First you have to get the position of a character in a string. e.g. “FLASH”, then “F” corresponds to 0, “L” corresponds to 1, etc. This is the parameter charIndex. You will get back the rectangle that bound the character at the location charIndex. Limitations It can only search for a [...]

Continue reading...

April 14, 2010

0 Comments

Flash fire effect tutorial

Download the source: fire.zip Step 1 Create a new fla, with a black background Set stage size 300×300. Create a movie clip gradient with size 100×100 as follow. Put the movie clip outside the stage and name it “gradient”. Step 2 Create a blank movie clip. It will appear as a white dot. Place it [...]

Continue reading...

April 7, 2010

3 Comments

Flash text fade tutorial

Step 1 Start with a black background. Type in the text you like to add this effect to with white color. Right click the text and press break apart one time to seperate the letters. Now right click each letter and convert them to seperate movie clips Select all the letters, right click and choose [...]

Continue reading...

April 7, 2010

1 Comment

Flash shadow effect

After you have completed  flash easing ball animation, you should have it all on one layer. Step 1 Create a new layer for the shadow. Ensure that the shadow layer is underneath the ball layer. If it is not, simply click and drag the layer until it moves beneath the first layer. On frame 1 [...]

Continue reading...