This is a read-only snapshot of the ComputerCraft forums,
taken in April 2020.
Help With Monitor!?!?!?!
Started by iNsTiNcT, 06 September 2012 - 04:54 AMPosted 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/>/>
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 insteadPosted 06 September 2012 - 07:52 AM
Ok, thank you but then how can i edit the text size? the mo.setTextScale or somthing else?just use the codeorterm.redirect(peripheral.wrap(side))
and everything that should go to the computer shows on the monitor insteadmon=peripheral.wrap(side) term.redirect(mon)
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.
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)
Posted 06 September 2012 - 08:29 AM
I think it is 1 - 5 unless that was changed in 1.4
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.
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.
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
Posted 06 September 2012 - 09:57 AM
Ok ell when i add all it in it errors out,,,,
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