Output
The object represents the text console present within the script editor.
output.clear()
output.print("Test console")
output.print(utility.tid())
|
clear |
|
|
Description |
Pug the script editor console. |
|
Type Value |
|
|
Format |
output.clear() |
|
Typology |
Metodo |
|
Systems |
Windows, Web, Android, IOS, Mac OS |
|
Examples |
|
output.clear() |
|
|
|
|
Description |
Add a line of text inside the console. |
|
Type Value |
|
|
Format |
output.print(string) |
|
Typology |
Metodo |
|
Systems |
Windows, Web, Android, IOS, Mac OS |
|
Parametro |
Tipo Valore |
Description |
|
string |
object |
The string to print |
|
Examples |
|
output.print(`value string a=` .. a) |