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

How does scaled text on monitors work?

Started by Klausar, 21 July 2012 - 02:00 PM
Klausar #1
Posted 21 July 2012 - 04:00 PM
Hello CC Community,
can someone make me a simple example program with mon.setTextScale() ?? I couldn't get it working.
KevinW1998 #2
Posted 21 July 2012 - 04:05 PM

yourmon = peripheral.wrap(yourside) -- enter here the side of the monitor
yourmon.setTextScale(5) -- 1 is the smallest 5 the biggest
term.redirect(yourmon)
print("test")
term.restore()