term resize (event)
From ComputerCraft Wiki
| Fired when the screen changes size (through opening a new tab with bg, etc). Requires version 1.6 or higher. | |
| Returned Object 1 | Nothing |
| 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 |