home *** CD-ROM | disk | FTP | other *** search
- var fader = new com.neodelight.std.ColorFader(_root.levelMc);
- var fx0 = {ra:100,rb:0,ga:100,gb:0,ba:100,bb:0,aa:100,ab:0};
- var fx1 = {ra:100,rb:0,ga:0,gb:0,ba:0,bb:0,aa:100,ab:0};
- var steps = 12;
- this.fader.fadeTo(fx1,this.steps);
- eventStartFx = function()
- {
- this.onEnterFrame = function()
- {
- if(!this.fader.step())
- {
- var _loc2_ = this.fx0;
- this.fx0 = this.fx1;
- this.fx1 = _loc2_;
- this.fader.fadeTo(fx1,this.steps);
- }
- };
- };
- eventStopFx = function()
- {
- delete this.onEnterFrame;
- this.fader.clearFx();
- };
-