Output

The object manages the console of the script editor. Its function is to display the values processed by the script.

If there are multiple editing script windows open, the active console will be the one on the window currently in focus.

output.clear()

output.print("Test console")

output.print(utility.tid())

output.print(*value*)

Prints the required value inside the console. In case there is no usable console, the script skips the command.

output.clear()

Clears all the values shown inside the console. In case there is no usable console, the script skips the command.