To insert a comment in ActionScripted code, just put two backslashes (//) in front of it. So a comment explaining the function of a particular block of code might look like this:
//duplicate the snow movie clip up to 250 duplicates
dup = Math.random()*5;
for (dup=0; dup<250; dup++){
duplicateMovieClip(this.snowbit, snowbit+dup, dup) ;
}
Flash color-codes ActionScripts so that you can pick out keywords and determine active code; any comments will be grey, rather than black or blue.


