This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Ristyo's profile picture

How to set the whole background color

Started by Ristyo, 23 March 2013 - 03:48 PM
Ristyo #1
Posted 23 March 2013 - 04:48 PM
I am still confused, but does anyone know how to color the whole background WITHOUT having to use paint? thanks
theoriginalbit #2
Posted 23 March 2013 - 04:58 PM

term.setBackgroundColor( colors.orange )
term.clear()
SuicidalSTDz #3
Posted 24 March 2013 - 02:53 AM
Side note for future reference:
term.clear() just sets the whole screen as spaces, thus clearing it. If we first set the background color then all of those spaces will turn into a color like TOBIT showed us.

EDIT: I fixed this note, you must set background color before clearing :P/>
Ristyo #4
Posted 24 March 2013 - 04:45 AM
thanks dude