147 posts
Location
England
Posted 27 October 2012 - 06:24 PM
How do I set the background for one cell. I can only find the function to set the whole background colour.
767 posts
Posted 27 October 2012 - 06:31 PM
in my program, i only do something like this:
term.setBackgroundColor(colors.red) – sets the backgroundcolor for the current pixel, until the screen will refresh - that is for example Clearing the screen with term.clear() or something else….
term.setCursorPos(10,10)
print("Hello") – prints "hello" at pos 10,10
then it would look like this: