If you are going to ask a bunch of questions like this please make one thread where you put all of them instead of making multiple threads for multiple questions.
Anyway, If you are trying to make text stay in one spot use:
LOCATE 10,10 PRINT "Example"Or if you want it to be shorter:
LOCATE 10,10:?"Example"LOCATE lets you specify the coordinates of the text on the screen. If I'm not mistaken, the first number is it's X position, and the second number is it's Y position. The first number moves it farther to the right depending on how high the number is, and the second number moves it down depending on how high it is. Hope this helped.