General syntax
A scripter-script is made up of a function per line, and a number of
parameters per function. Lets start out with a very basic example:
showmessage Hello world
This will show a messagebox containing the text "Hello world". In the above
example the function "showmessage" is called with a single parameter,
containing "Hello world".
Lets say we wanted two messageboxes after each other:
showmessage Hello world,Scripter's nice!
This will show a messagebox containing the text "Hello world" succeded by
another messagebox with the text "Scripter's nice!". Say you wanated to
display the message "Hello, world":
showmessage Hello\, world
The comma is escaped by a backslash, in wich case it is treated as a
litteral comma.