home *** CD-ROM | disk | FTP | other *** search
- Music.stop();
- Ind = ScoreInd;
- Par = 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 = 225 - StrRep.length * 5;
-