when you use locate (row, col) it will only apply to the very next output. after that the output will follow to the next line. so if the first output is located to (row,col) then the next ouput will start at (row +1, 1)
Quote:
_____________So if you started here:
the next line is here
then here
if you want this:Quote:
Text here
Then text here
All lined up!
you need to have this code:
code: |
locate (row, col)
put "Text here"
locate (row+1, col)
put "Then text here"
locate (row+2, col)
"All lined up!"
|