Computer Science Canada

Text on Screen

Author:  Blade [ Sat Mar 22, 2003 3:45 pm ]
Post subject:  Text on Screen

when i'm putting text out on the screen using put, is there any way i can clear it without clearing the screen?

Author:  Asok [ Sat Mar 22, 2003 4:02 pm ]
Post subject: 

you can draw over it with locates.
ie.

code:
locate (1,1)
put "bla"
delay (1000)
locate (1,1)
put "bla 2!"
delay(1000)
locate(1,1)
put "":maxcol


: