Menu

Forsta Scripting Support

All the topics, resources needed for Forsta Scripting.

  • About Objects

    JavaScript and Script .NET are object-oriented languages. We will not elaborate on the object-oriented features in this manual. We will just describe the Jav...

  • Properties

    Properties are used to access the data values contained in an object.An object's properties are accessed by combining the object's name and its proper...

  • Methods

    Methods are functions that are used to perform operations on an object.You access a method of an object by combining the object's name and the name of...

  • Constructors: Creating Instances of Objects

    Instances of objects of a particular object type are created using an operator called new, which you already have seen used when creating an array, fo...