Featured FLA
» Author: Bugra Ozden
» Title: Skatalog v9 - product catalog
» Description: Create your product catalog easly and publish on your website or Create your image gallery, documents list, portfolio. Fully XML Driven
» More by Bugra Ozden
Featured Site
» Posted in the Flash Kit Links section
» Title: Creative DW Image Show PRO
» Description: Creative DW Image Show PRO is a Dreamweaver extension which enables the user to create multimedia presentations. It combines the features of the popular Creative DW Image Show with the ability to add professional text effects to slides (similar to After Effects). The product is very customizable: the user can choose the duration of the transition effects, the slide motion start and end position, zoom and panning type for both images and texts.
Double-click on the created MovieClip. Double-click on the border to select it. Press the 'Delete' key to delete the border. You may keep the border if you want to but that will slow down the trailing effect.
Create the animation
Inside the trail MovieClip, select the first keyframe in the Timeline.
From the Menubar, select Insert>Create Motion Tween.
Left-click on the 20th Keyframe and select Insert>Keyframe.
Left-click on the 60th Keyframe and select Insert>Keyframe.
Left-click on the 60th Keyframe and open up the Actions Pane. Write down the following code:
this.removeMovieClip();
Explanation
To give the cursor a trailing effect, we will need to make copies of the trail MovieClip by using the ActionScript function duplicateMovieClip().
We will also be requiring to delete the copies when the trail effect finishes. After writing the above code, all copies of the trail MovieClip will be automatically deleted as soon as they reach the 60th frame of their animation.
This code will have no effect on the original MovieClip from which the duplicates will be created. So, the original MovieClip will not be removed.
Note: If you are unable to write anything in the Actions Pane, you need to switch to Expert Mode. Just left-click on the icon on the extreme right of the Actions Pane title bar and check the Expert Mode option.