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

Help With Monitor!?!?!?!

Started by iNsTiNcT, 06 September 2012 - 04:54 AM
iNsTiNcT #1
Posted 06 September 2012 - 06:54 AM
Hi, i was just wondering if there was anyway to make the monitor have flashing text or get textutils.slowPrint("") to work on the monitor. I could really use some help! Please and thank you to whoever helps me ahead of time :D/>/>
KaoS #2
Posted 06 September 2012 - 07:05 AM
just use the code

term.redirect(peripheral.wrap(side))
or

mon=peripheral.wrap(side)
term.redirect(mon)
and everything that should go to the computer shows on the monitor instead
iNsTiNcT #3
Posted 06 September 2012 - 07:52 AM
just use the code

term.redirect(peripheral.wrap(side))
or

mon=peripheral.wrap(side)
term.redirect(mon)
and everything that should go to the computer shows on the monitor instead
Ok, thank you but then how can i edit the text size? the mo.setTextScale or somthing else?
Luanub #4
Posted 06 September 2012 - 08:26 AM
Yes with mon.setTextScale( size )

replace size with anything from 0.5 to 5 in 0.5 increments.

To do this make sure you wrap the monitor to the var mon. Like listed above.

mon=peripheral.wrap(side)
KaoS #5
Posted 06 September 2012 - 08:29 AM
I think it is 1 - 5 unless that was changed in 1.4
Luanub #6
Posted 06 September 2012 - 08:30 AM
It's changed. From the wiki.
mon.setTextScale( scale ) Sets the size of the text on the Monitor. Textscale can be between 0.5 and 5, with increments of 0.5.
KaoS #7
Posted 06 September 2012 - 08:50 AM
Oh nice, another reason why I really need to update my CC, increase of resolution in ASCII art
iNsTiNcT #8
Posted 06 September 2012 - 09:57 AM
Ok ell when i add all it in it errors out,,,,
KaoS #9
Posted 06 September 2012 - 10:18 AM
can you give us the error? in order to modify the text scale you must have used the

mon=peripheral.wrap(side)
term.redirect(mon)
method