All comments in LUA start with a --
Scripts can write out data to the output window while they are running. This is useful when exporting any data from Moving Light Assistant. It can also be a useful debugging tool when developing scripts.
If you wish the output window for a script to be displayed then include in the script the line…
-- DisplayOutputWindow=True
Otherwise do not include the line above in the script, or explicitly declare you do not want the output window with…
-- DisplayOutputWindow=False
In a script, an io.write
function will write data to the output window.