home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / DemonicDefence3.swf / scripts / DefineSprite_973 / frame_1 / DoAction.as
Encoding:
Text File  |  2005-09-27  |  259 b   |  16 lines

  1. this.timer += this.timeIt / 100 * 100;
  2. if(this.timer >= 100)
  3. {
  4.    this.timer = 100;
  5.    this.timeIt = 0;
  6.    this._visible = false;
  7. }
  8. if(this.timer != 100)
  9. {
  10.    setProperty(bar, _yscale, this.timer);
  11. }
  12. else
  13. {
  14.    setProperty(bar, _yscale, 100);
  15. }
  16.