Hi guys
Thanks for your thoughts on this, I guess your right, I just wanted to try and delve a little deeper, when I should be concentrating on trying to learn all the commands that already exist.
It's just I read somewhere, that the TEXT command was really only a SET CURSOR and PRINT fuction. I played around with it and came up with the following, just in case anyone may come across this thread in a search.
Thanks for all your advice !
hide mouse
test(220,240,"Just testing TEXT command !")
wait key
end
function test(x,y,a$)
set cursor x,y
print a$
endfunction