home *** CD-ROM | disk | FTP | other *** search
- Ind = ScoreInd;
- Par = _parent.Score;
- StrRep = String(Par);
- dg = 0;
- while(dg <= 10)
- {
- if(dg < StrRep.length)
- {
- Ind["d" + dg]._visible = true;
- if(StrRep.charAt(dg) == "-")
- {
- Ind["d" + dg].gotoAndStop(11);
- }
- else
- {
- Ind["d" + dg].gotoAndStop(Number(StrRep.charAt(dg)) + 1);
- }
- }
- else
- {
- Ind["d" + dg]._visible = false;
- }
- dg++;
- }
- Ind._x = - StrRep.length * 5;
- UserScore = _parent.Score;
- Selection.setFocus("UserName");
- _parent.Score = 0;
- stop();
-