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

  1. totaldot = 8;
  2. spacing = (r.villainpos - 500) / totaldot;
  3. next = spacing;
  4. no = 1;
  5. onenterframe = function()
  6. {
  7.    if(r.posnow > next)
  8.    {
  9.       this["i" + no].gotoAndStop(2);
  10.       next += spacing;
  11.       no++;
  12.       if(no > totaldot)
  13.       {
  14.          delete onenterframe;
  15.       }
  16.    }
  17. };
  18. stop();
  19.