Computer Science Canada

Can you set the whole screen a solid color?

Author:  TipsyCzar [ Tue Nov 08, 2016 1:26 pm ]
Post subject:  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

Author:  lordroba [ Tue Nov 08, 2016 5:52 pm ]
Post subject:  Re: Can you set the whole screen a solid color?

This is one way of doing it.

Turing:

Author:  Insectoid [ Wed Nov 09, 2016 8:31 am ]
Post subject:  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


: