home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / Titans / cyborg.swf / scripts / DefineSprite_168 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-01-05  |  225 b   |  13 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.       bar.gotoAndStop(1);
  8.       delete onenterframe;
  9.       play();
  10.    }
  11. };
  12. stop();
  13.