home *** CD-ROM | disk | FTP | other *** search
- var it = _parent;
- d = r.invhitdelay - 2;
- c = new color(it);
- c.setBrightness(50);
- onenterframe = function()
- {
- d--;
- if(d == 4)
- {
- c.resetcolor();
- }
- if(it._visible)
- {
- it._visible = 0;
- }
- else
- {
- it._visible = 1;
- }
- if(!d)
- {
- it._visible = 1;
- this.removeMovieClip();
- }
- };
-