So basic I am almost ashamed to ask

Blitz3D Forums/Blitz3D Beginners Area/So basic I am almost ashamed to ask

collimic(Posted 2014) [#1]
Is there some way to print text to the screen using the print command and after you are done with it clear the screen and make the text start printing for the top again instead of 1 line below where you printed last time?

Print "This is line 1."
Print "This is line 2."
Delay 1000
Cls
Print "This should be line 1 not line 3.:
WaitKey
End



Floyd(Posted 2014) [#2]
I had forgotten that Print behaves this way.

There is a Locate command, which ironically can't be located in the Help index.

Locate 0,0 will put you back to the upper left corner.


Hotshot2005(Posted 2014) [#3]
nothing to be shame of asking questions as saying goes....if person dont ask questions then they dont get the answer....

IF you ever get stuck then always ask questions then you will able to progress from there :)


collimic(Posted 2014) [#4]
THANK YOU THANK YOU.
This is the command I have been looking for.