Syntax
Code lines
The syntax of the scripting language is line-oriented. This means that each statement must be written on a single line without line breaks. A single logical line can be wrapped using the characters "(+)". The length of a line is not limited.
Allowed:
MessageBox "This is line number 1\nThis is line number 2"
CreateReport /template="{programdir}examples\report_template_changes.htm" (+)
/output="c:\report.htm" (+)
/bookmarks=changed
Not allowed:
MessageBox "This is line number 1
This is line number 2"
Comments
Comments start with a double slash "//". The rest of the line is ignored. Comments must be placed on a separate line. It is not allowed to combine a comment and a Script command on the same line.
Allowed:
// Check all Hotsites
CheckBookmarks /hotsites
Not allowed:
CheckBookmarks /hotsites // Check all hotsites