home *** CD-ROM | disk | FTP | other *** search
- function checkParamsLoaded()
- {
- if(home.highscores.done == 0)
- {
- inty += 0.2;
- if(inty > 10)
- {
- clearInterval(param_interval);
- total_1 = "Timed Out";
- }
- trace("not yet scores1. " + inty);
- }
- else
- {
- total_1 = home.highscores.hs_1_score + " pts - " + home.highscores.hs_1_username;
- total_2 = home.highscores.hs_2_score + " pts - " + home.highscores.hs_2_username;
- total_3 = home.highscores.hs_3_score + " pts - " + home.highscores.hs_3_username;
- total_4 = home.highscores.hs_4_score + " pts - " + home.highscores.hs_4_username;
- total_5 = home.highscores.hs_5_score + " pts - " + home.highscores.hs_5_username;
- total_6 = home.highscores.hs_6_score + " pts - " + home.highscores.hs_6_username;
- total_7 = home.highscores.hs_7_score + " pts - " + home.highscores.hs_7_username;
- total_8 = home.highscores.hs_8_score + " pts - " + home.highscores.hs_8_username;
- total_9 = home.highscores.hs_9_score + " pts - " + home.highscores.hs_9_username;
- total_10 = home.highscores.hs_10_score + " pts - " + home.highscores.hs_10_username;
- }
- updateAfterEvent();
- }
- var param_interval = setInterval(checkParamsLoaded,200);
- stop();
-