home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / blockix.swf / scripts / DefineSprite_53_sparcle / frame_1 / DoAction.as
Text File  |  2008-09-26  |  230b  |  14 lines

  1. this.onEnterFrame = function()
  2. {
  3.    mytimer--;
  4.    this._x += xm;
  5.    this._y += ym;
  6.    this._width *= 0.9;
  7.    this._height *= 0.9;
  8.    this._alpha *= 0.95;
  9.    if(mytimer == 0)
  10.    {
  11.       this.removeMovieClip();
  12.    }
  13. };
  14.