you can make some functions to make it all easier, so you dont have to calculate things yourself each time
this could be a function to replace the print command
function printtext(a$)
text textpos(0),textpos(1),a$
inc textpos(1),textsize+space
endfucntion
the variable space is the space between two rules of text and the variable textsize is just the size of your text, so when you set its size you could do this:
textsize=24
set text size textsize
and this is how you might replace the set cursor command
function settextcursor(x,y)
textpos(0)=x
textpos(1)=y
endfucntion
offcourse you have to declare the textpos array somewhere at the beginning of your program:
[href]www.bernardfrancois.com[/href]