check the codebase, ive seen this question asked a few times and seen people write scripts that solve it quite easily.
the basics to it is to grab an image of the text then use them in the sprite image references.
set text size 8
for i = 1 to 9
ink rgb(155,155,155),1
box 0,0,16,16
ink rgb(55,55,55),1
text 1,1,STR$(i)
get image i,0,0,16,16,1
cls
next i
for i = 1 to 9
sprite i,1*17,i*17,i
next i
sync: sync
suspend for key
If no-one gives your an answer to a question you have asked, consider:- Is your question clear.- Did you ask nicely.- Are you showing any effort to solve the problem yourself