User Guide

866 Chapter 14: Properties
modifiedDate
Usage
-- Lingo syntax
memberObjRef.modifiedDate
// JavaScript syntax
memberObjRef.modifiedDate;
Description
Member property; indicates the date and time that the cast member was last changed, using the
system time on the authoring computer. Read-only.
This property is useful for tracking and coordinating Director projects. It can also be viewed in
the Property inspector’s Member tab and the Cast window list view.
Example
This statement displays the date of the last change to cast member 1:
-- Lingo syntax
put(member(1).modifiedDate)
// JavaScript syntax
put(member(1).modifiedDate);
See also
Member
modifier
Usage
member(whichCastmember).model(whichModel).modifier
member(whichCastmember).model(whichModel).modifier.count
Description
3D model property; returns a list of modifiers that are attached to the specified model. As
modifier.count, the command returns the number of modifiers attached to the model.
If both the
toon and inker modifiers are applied to a model, only the first one that was added to
the model is returned.
This property can be tested but not set. Use the
addModifier and removeModifier commands
to add and remove modifiers from models.
Example
This statement shows which modifiers are attached to the model named Juggler:
put member("ParkScene").model("Juggler").modifier
-- [#bonesPlayer, #lod]
See also
modifier[], modifiers, addModifier, removeModifier