monitor_resize event

Occurs every time a connected Monitor resizes, for example when a player places or destroy Monitor blocks.

ExampleNotify about resize
Notifies the user when a connected Monitor has been resized.
Code
<nowiki>
while true do
  local event, peripheral_name = os.pullEvent("monitor_resize")
  local x, y = peripheral.call(peripheral_name, "getSize")
  print("Monitor", peripheral_name, "has been resized to", x, ",", y)
end
    </nowiki>
monitor_resize
Event
Returns
  • name : string The side or network name of the Advanced Monitor that resized

Source CC:Tweaked
This article is issued from Computercraft. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.