home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / Titans / robin.swf / scripts / DefineSprite_15_blink2 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-01-05  |  237 b   |  17 lines

  1. var it = _parent;
  2. d = 3;
  3. c = new color(it);
  4. v = 50;
  5. onenterframe = function()
  6. {
  7.    d--;
  8.    c.setBrightness(v);
  9.    v -= 20;
  10.    if(!d)
  11.    {
  12.       c.resetcolor();
  13.       it._visible = 1;
  14.       this.removeMovieClip();
  15.    }
  16. };
  17.