Each object contains items. Items are:

var w = new Window(); //Calls the method close() from a previously created Window object
w.close();
Window().close(); //Calls the method close() from a Window object created inline
Window.all(); //Calls the function all()
Script.nextLine = 4; //Sets the next script execution line to 4

Only one "Script.nextLine" can be executed in a Actiona code section.

Console.print("The next line is: " + Script.nextLine); //Writes an entry in the execution console with the next line
var size = new Size();
size.x = 6;