9 posts
Posted 24 March 2012 - 02:20 PM
Is there a command you can use to alter the text size on monitors?
I think I read it somewhere, but I can't find it.
Any information appreciated :(/>/>
236 posts
Location
Germany
Posted 24 March 2012 - 02:24 PM
i saw it and i read it too but i dont know it anymore -.-
715 posts
Posted 24 March 2012 - 02:31 PM
I can't remember myself anymore, but with this you can list all functions of a connected monitor (or any peripheral):
local methods = peripheral.getMethods()
for _, method in pairs(methods) do
print(method)
end
And then I'm sure you'll be able to find it by looking for setSize or something similar.
80 posts
Posted 24 March 2012 - 02:40 PM
There are 5 sizes.
To set them, use:
size = 4 --From 1 to 5
side = "right" --Your monitor
m = peripheral.wrap(side)
m.setTextScale(size) --Sets size
9 posts
Posted 24 March 2012 - 02:42 PM
Thanks for the help! :(/>/>