home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / DomonicDefence4.swf / scripts / DefineSprite_1241 / frame_1 / DoAction.as
Encoding:
Text File  |  2005-09-27  |  305 b   |  19 lines

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