home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / redbeard.swf / scripts / DefineSprite_427 / frame_41 / DoAction.as
Encoding:
Text File  |  2008-09-12  |  573 b   |  20 lines

  1. if(!dailyTabClicked)
  2. {
  3.    mcYourScore.position = position;
  4.    dailyTabClicked = true;
  5.    var i = 0;
  6.    while(i < mcHighScoreData.high)
  7.    {
  8.       if(scoreIsTime)
  9.       {
  10.          mcHighScoreData["scoreDaily" + i] = convertScoreToTime(mcHighScoreData["scoreDaily" + i]);
  11.       }
  12.       this["txtUserName" + i] = mcHighScoreData["userNameDaily" + i];
  13.       this["txtScore" + i] = mcHighScoreData["scoreDaily" + i];
  14.       this["txtDate" + i] = mcHighScoreData["dateDaily" + i];
  15.       i++;
  16.    }
  17. }
  18. mcYourScore.position = mcHighScoreData.positionDaily;
  19. stop();
  20.