-- Lingo syntaxmemberObjRef.comments // JavaScript syntaxmemberObjRef.comments;
Member property; provides a place to store any comments you want to maintain about the given cast member or any other strings you want to associate with the member. Read/write.
This property can also be set in the Property inspector's Member tab.
This statement sets the comments of the member Backdrop to the string "Still need to license this artwork":
-- Lingo syntax
member("Backdrop").comments = "Still need to license this artwork"
// JavaScript syntax
member("Backdrop").comments = "Still need to license this artwork";