home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / mr_danger.swf / scripts / frame_3 / DoAction.as
Encoding:
Text File  |  2007-03-20  |  414 b   |  19 lines

  1. stop();
  2. _global.currentlevel = 1;
  3. getsc_lv = new LoadVars();
  4. getsc_lv.bid = 10;
  5. rec_lv = new LoadVars();
  6. getsc_lv.sendAndLoad("http://bot.pldmstudios.com/g10.php",rec_lv,"POST");
  7. bestplayer.text = "Loading...";
  8. rec_lv.onLoad = function(success)
  9. {
  10.    if(success)
  11.    {
  12.       bestplayer.text = "Best player: " + rec_lv.name1;
  13.    }
  14.    else
  15.    {
  16.       bestplayer.text = "ERROR: Can\'t load!";
  17.    }
  18. };
  19.