term resize (event)

From ComputerCraft Wiki
Revision as of 16:23, 10 April 2014 by MKlegoman357 (Talk | contribs) (Added links in example)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search



Grid Modem.png  Event term_resize
Fired when the screen changes size (through opening a new tab with bg, etc). Requires version 1.6 or higher.
Returned Object 1 Nothing


Grid paper.png  Example
Prints the screen size when it changes.
Code
while true do
  os.pullEvent("term_resize")
  local w, h = term.getSize()
  print('Term Size: '..w..', '..h)
  --you should redraw your user interface here to ensure it fills the entire screen and is not clipped
end