62 posts
Location
In my computer house located in a random village, programming.
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
7508 posts
Location
Australia
Posted 23 March 2013 - 04:58 PM
term.setBackgroundColor( colors.orange )
term.clear()
1511 posts
Location
Pennsylvania
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/>
62 posts
Location
In my computer house located in a random village, programming.
Posted 24 March 2013 - 04:45 AM
thanks dude