MACROMEDIA DIRECTOR MX 2004-DIRECTOR SCRIPTING Reference page 865

Director scripting reference
Table of Contents

Advertisement

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 inspector's 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
modifiedBy
865

Hide quick links:

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the DIRECTOR MX 2004-DIRECTOR SCRIPTING and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Director mx 2004

Table of Contents