Posted 21 August 2014 - 09:17 PM
Im trying to get text of two different sizes to print onto a monitor, sort of like a title with larger font and information in smaller text. The code i'm using is:
monitor = peripheral.wrap("right")
monitor.clear()
monitor.setCursorPos(1,1)
Monitor.setTextScale(5)
monitor.write("STUFF")
monitor.setTextScale(1)
monitor.setCursorPos(2,5)
monitor.write("more stuff")
It prints everything to the screen but all one size. Is there a function that allows you to change the size of only individual strings rather than the entire monitor?
Thanks in advance
monitor = peripheral.wrap("right")
monitor.clear()
monitor.setCursorPos(1,1)
Monitor.setTextScale(5)
monitor.write("STUFF")
monitor.setTextScale(1)
monitor.setCursorPos(2,5)
monitor.write("more stuff")
It prints everything to the screen but all one size. Is there a function that allows you to change the size of only individual strings rather than the entire monitor?
Thanks in advance