Operators > /* (comment delimiter)
/* (comment delimiter)Syntax
/*
comment
*/
/* *comment
*comment
*/
Arguments
comment
Any text
Description
Comment; indicates one or more lines of script comments. Any text that appears between the opening comment tag /*
and the closing comment tag */
, is interpreted as a comment and ignored by the ActionScript interpreter. Use the first syntax to identify single-line comments, and use the second syntax to identify comments on multiple successive lines. Leaving off the closing tag */
when using this form of comment delimiter causes the ActionScript compiler to return an error message.
Player
Flash 5 or later.
See also