Posted 02 November 2012 - 10:08 AM
I'm trying to do a computercraft monitor board, but i can't seem to use multiple text sizes on the same monitor.
This is the code I have so far:
For some reason, the text in scale 2 doesn't show on the top of the monitor, but anything after in scale 1 does?
This is the code I have so far:
mon = peripheral.wrap("top")
mon.clear()
mon.setTextScale(2)
mon.setCursorPos(13, 1)
mon.write("Rules")
mon.setTextScale(1)
mon.setCursorPos(2, 7)
mon.write("1. ")
For some reason, the text in scale 2 doesn't show on the top of the monitor, but anything after in scale 1 does?