how do you make that function left-aligned?
I tried doing this:
function print_score(score, x, y , textwidth )
scory$=str$(score)
scory=len(scory$)
for f=0 to scory-1
scory2=val(left$(scory$,f))
if scory2>9 then scory2=0
paste image 100+scory2,x+(textwidth*f),y,1
next f
endfunction
but...
Just can't seem to get it.
nvm...finally got it:
function print_score(score, x, y , textwidth )
scory$=str$(score)
scory=len(scory$)
for f=1 to scory
scory2=val(mid$(scory$,f))
paste image 100+scory2,x+(textwidth*f),y,1
next f
endfunction