home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / dragon.swf / scripts / DefineSprite_309_ice_spark / frame_1 / DoAction.as
Encoding:
Text File  |  2008-09-12  |  153 b   |  10 lines

  1. function step()
  2. {
  3.    _xscale = _xscale - decayRate;
  4.    _yscale = _yscale - decayRate;
  5.    if(_xscale < 20)
  6.    {
  7.       this.unloadMovie();
  8.    }
  9. }
  10.