Adding Comments to Code

Below is an example of both a multi-line comment and a single-line comment. In the script, the comments will appear green by default.

/*
* A one line programme to hide an
* image object named 'Image1'
*/
Image1.Hide() // will hide Image1

Close