comments

Usage

-- Lingo syntax
memberObjRef.comments

// JavaScript syntax
memberObjRef.comments;

Description

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.

Example

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";

See also

Member