Posted 14 March 2012 - 10:01 AM
Hello, I'm creating a movie but I have a problem
I use Rednet to start the movie but I do not know how to start an application on a monitor using shell.run, thank you in advance for your help
Miyoyo
local side = "left" -- change this
if peripheral.getType(side) ~= "monitor" then
print("No monitor on that side")
return -- Neatly exits the program
else
local monitor = peripheral.wrap(side)
term.redirect(monitor)
end
All future output will redirect to the monitor on whichever side you specify.
term.restore()