Parameters - definition

Many of the OpusScript functions (as well as functions you will create) will include parameters. A parameter is simply data that is passed to a function. In this help file, the Syntax heading for each OpusScript function will show the parameters that you can add to a function. For example, the function Show() looks like this

Syntax:

Show(Reset position)

Reset position is the only parameter required for the Show function. Some parameters have a default value, which means it has a value it can use if you do not provide one. Parameters can also be optional, which means you do not have to use the parameter.

Close