Hi Pilou, you can "comment out" script code by either putting // characters at the start of each line, like
// code here
// code....
// etc....
or also you can do a whole block by putting /* */ around the whole block like:
/*
a bunch of code here
etc...
etc...
*/
- Michael
|