home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / Titans / star.swf / scripts / DefineSprite_213 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-01-05  |  246 b   |  14 lines

  1. onenterframe = function()
  2. {
  3.    x = 1 + math.floor(r.energy / r.energymax * 100);
  4.    bar.gotoAndStop(x);
  5.    if(r.energy <= 0)
  6.    {
  7.       r.losing = 1;
  8.       bar.gotoAndStop(1);
  9.       delete onenterframe;
  10.       play();
  11.    }
  12. };
  13. stop();
  14.