home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Aventura / tall-ships.swf / scripts / DefineSprite_645 / frame_1 / DoAction.as
Encoding:
Text File  |  2005-09-29  |  173 b   |  14 lines

  1. count = 0;
  2. onEnterFrame = function()
  3. {
  4.    if(count > score)
  5.    {
  6.       count = score;
  7.    }
  8.    else
  9.    {
  10.       score_txt.text = count;
  11.       count += 9;
  12.    }
  13. };
  14.