RedRogueXIII wrote:
View.Set("text")- switches to text mode but what you need is a View.Update after you draw the text to the screen.
in code this would be as an ex)
code: |
View.Set("offscreenonly")
put "Use View.Update any time anything is added or changed to the screen."
View.Update
|
the offscreenonly part means that any changes done to the screen is done but not visually, then you use View.Update to update the screen with these changes, thus eliminating the flashiness of drawing and clearing and drawing and clearing of the screen.