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.
The duplicateMovieClip() function's syntax is as follows:
duplicateMovieClip(target, newname, depth)
In our example, target is the trail MovieClip.
Depth should be unique for every duplicated MovieClip. The above code sets a depth starting from id+10. So, the depth of the first few duplicated MovieClips will be 11(1+10), 12(2+10) 13(3+10) and so on.
newname is the new name for the duplicated MovieClip. In our case, the duplicated MovieClips will have the names as trail1 ,trail2, trail3, etc. All the duplicated MovieClips will be placed under _root. So, we can address the duplicated MovieClips as _root.trail1, _root.trail2, _root.trail3, etc.
We can also address the duplicated MovieClips as _root["trail1"], _root["trail2"], etc. _root["trail1"] is the same as _root.trail1.
_root["trail"+id] evaluates to _root.trail1, _root.trail2, etc. when id=1, 2 and so on.