|
|
Search Tutorials
Class FaderThe 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.
|
||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||
|