ok ..see that..a real use of text on sprite..with a little example of text scroller:
sync on
ink rgb(10,110,12),1
box 1,1,200,200
get image 1,0,0,200,200
ink rgb(255,255,255),0
set cursor 0,0
print "this is a test.. "
get image 2,1,1,200,200
cls
SPRITE 1, 0, 0, 2
last=10
space=0
last2=0
do
if (upkey() ) and (last=0) then Scroll(1):last=1
if (downkey() ) and (last=0) then Scroll(-1):last=1
if (upkey()=0) and (downkey()=0) then last=0
sync
loop
function Scroll(offset)
space=space+offset
create bitmap 1,640,480
paste image 1,0,0
set cursor 0,space*5
print "this is a test.. "
get image 2,0,0,200,200
delete bitmap 1
delete sprite 1
sprite 1,0,0,2
endfunction