User Guide

modifiedBy 865
Example
This statement tests whether the cast member Introduction has been modified since it was read
from the movie file:
-- Lingo syntax
if (member("Introduction").modified) then
_player.alert("Introduction has been modified")
else
_player.alert("Introduction has not been modified")
end if
// JavaScript syntax
if (member("Introduction").modified) {
_player.alert("Introduction has been modified");
}
else {
_player.alert("Introduction has not been modified");
}
See also
Member
modifiedBy
Usage
-- Lingo syntax
memberObjRef.modifiedBy
// JavaScript syntax
memberObjRef.modifiedBy;
Description
Member property; records the name of the user who last edited the cast member. Read-only.
The name is taken from the user name information provided during Director installation. You
can change this information in the Director General Preferences dialog box.
This property is useful for tracking and coordinating Director projects with more than one
author, and may also be viewed in the Property inspectors Member tab.
Example
This statement displays the name of the person who last modified cast member 1:
-- Lingo syntax
put(member(1).modifiedBy)
// JavaScript syntax
put(member(1).modifiedBy);
See also
Member