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
Summary of Contents for DIRECTOR MX 2004-DIRECTOR SCRIPTING
Page 1: ...DIRECTOR MX 2004 Director Scripting Reference...
Page 48: ...48 Chapter 2 Director Scripting Essentials...
Page 100: ...100 Chapter 4 Debugging Scripts in Director...
Page 118: ...118 Chapter 5 Director Core Objects...
Page 594: ...594 Chapter 12 Methods...
Page 684: ...684 Chapter 14 Properties See also DVD...
Page 702: ...702 Chapter 14 Properties See also face vertices vertices flat...
Page 856: ...856 Chapter 14 Properties JavaScript syntax sprite 15 member member 3 4...
Page 1102: ...1102 Chapter 14 Properties...