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.
Finally, I would like to present a preloader, which I made especially for files with components but of course can be used for anything. Components are loaded prior to anything else. If you use the usual preloader and your file has many components you would notice that for sometimes your preloader does not appear untill all the components are loaded. If the separate the preloader from the actual movie, this does not happen.
This is the script in frame 1.
stop();
//check the "preloader" MC for a script.
//we make the loaderbar at the beginning invisible,
//because it will show up before the movie is loaded.
_root.loaderBar._visible = false;
_root.preHolder.loadMovie("advanced_search.swf");
We make our loaderBar invisible, because otherwise it will show up and start, even no loading occurs and then when loading it will start again. Inside of the empty movieclip preHolder we have the following code:
This is one of those typical loaderscripts, which I mixed together from other scripts, but it works and that is important. Important also that here we make the loaderbar visible again for loading. Finally we have a second frame with this code: