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 [...]
April 26, 2010
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 [...]
April 26, 2010
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 [...]
April 26, 2010
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 [...]
April 25, 2010
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 [...]
April 25, 2010
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 [...]
April 25, 2010
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 [...]
April 25, 2010
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 [...]
April 24, 2010
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 [...]
April 24, 2010
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 [...]
April 21, 2010
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 [...]
April 21, 2010
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 [...]
April 20, 2010
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 [...]
April 16, 2010
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 [...]
April 14, 2010
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; [...]
April 14, 2010
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. [...]
April 14, 2010
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 [...]
April 14, 2010
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 [...]
April 7, 2010
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 [...]
April 7, 2010
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 [...]


May 3, 2010
1 Comment