home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / starisland.swf / scripts / DefineSprite_396_pad / frame_13 / DoAction.as
Encoding:
Text File  |  2007-12-10  |  554 b   |  15 lines

  1. var time = int(illusoft.Game.Instance.currentTile.GetTimeLeft() / 1000);
  2. var s = time % 60;
  3. txtTime.text = int(time / 60) + ":" + (s >= 10 ? s : "0" + s);
  4. var Rtime = SharedObject.getLocal("Agame.starisland").data[illusoft.Game.Instance.currentTile.id];
  5. if(time > Rtime)
  6. {
  7.    SharedObject.getLocal("Agame.starisland").data[illusoft.Game.Instance.currentTile.id] = time;
  8.    SharedObject.getLocal("Agame.starisland").data[illusoft.Game.Instance.currentTile.id].flush();
  9.    this.newr._visible = true;
  10. }
  11. else
  12. {
  13.    this.newr._visible = false;
  14. }
  15.