StartY% = 200
StepY% = 16
For hi.hiscore = each hiscore
Text GraphicsWidth()/2,StartY,(hi\name$)+" "+(hi\score),True,True
StartY = StartY + StepY
Next ...and as if to anticipate your next question, the code below will line up the the left and right edges of each position in the high score table (or it should do - typed straight into the replybox, untested):StartY% = 200
StepY% = 16
NameXPos% = GraphicsWidth()/4
ScoreXPos = GraphicsWidth() - NameXPos
For hi.hiscore = each hiscore
Text NameXPos,StartY,(hi\name$),False,True
Text ScoreXPos-StringWidth(str$(hi\score)),StartY,(hi\score),False,True
StartY = StartY + StepY
Next
|