
-----------------------------------
TipsyCzar
Tue Nov 08, 2016 1:26 pm

Can you set the whole screen a solid color?
-----------------------------------
What is it you are trying to achieve?
I'm trying to set the screen to be a solid color.


What is the problem you are having?
Can't find any commands for this online.


Please specify what version of Turing you are using
4.1.1

-----------------------------------
lordroba
Tue Nov 08, 2016 5:52 pm

Re: Can you set the whole screen a solid color?
-----------------------------------
This is one way of doing it.  


drawfillbox (0, 0, maxx, maxy, black)


-----------------------------------
Insectoid
Wed Nov 09, 2016 8:31 am

RE:Can you set the whole screen a solid color?
-----------------------------------
colourback(colour) will change the background colour of text printed with the put command. Calling cls will clear the screen and reset it to that color. lordroba's method will work, but this is the 'correct' method and will not require you to change any of your other code.

[code]colorback (blue)
cls[/code]
