home *** CD-ROM | disk | FTP | other *** search
- stop();
- getsc_lv = new LoadVars();
- getsc_lv.bid = 10;
- rec_lv = new LoadVars();
- getsc_lv.sendAndLoad("http://bot.pldmstudios.com/g10.php",rec_lv,"POST");
- i = 1;
- while(i < 11)
- {
- _root["pl" + i].text = "loading";
- _root["sc" + i].text = "loading";
- i++;
- }
- rec_lv.onLoad = function(success)
- {
- if(success)
- {
- i = 1;
- while(i < 11)
- {
- _root["pl" + i].text = rec_lv["name" + i];
- _root["sc" + i].text = rec_lv["score" + i];
- i++;
- }
- }
- else
- {
- gotoAndStop("menu");
- play();
- }
- };
-