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 class fader has several methods as you have seen, which may come handy to us. One method is fading a slide in and out and for this we need to create a movieclip, which we do in a separate function. Another method is to mask the slide and a third method is to delete everything. As you could see we call the methods when we need them and that is what you have to do for your own slideshow but that is all you need to do: calling. Now we get into the first part of the script.
class as_scripts.fader {
public function fader() {
}
In this part we just define our class path, which is the folder as_scripts and the class name fader. The next line is the constructor for our class, which we leave empty. The constructor will initiate any instance of the class we create.