MACROMEDIA DIRECTOR MX 2004-DIRECTOR SCRIPTING Reference page 692

Director scripting reference
Table of Contents

Advertisement

Example
This statement checks whether sprite 7 was the last active sprite clicked:
-- Lingo syntax
if (_mouse.clickOn = 7) then
_player.alert("Sorry, try again.")
end if
// JavaScript syntax
if (_mouse.clickOn = 7) {
_player.alert("Sorry, try again.");
}
This statement sets the
random color:
-- Lingo syntax
sprite(_mouse.clickOn).foreColor = (random(255) - 1)
// JavaScript syntax
sprite(_mouse.clickOn).foreColor = (random(255) - 1);
See also
clickLoc,
Mouse
closed
Usage
-- Lingo syntax
memberObjRef.closed
// JavaScript syntax
memberObjRef.closed;
Description
Vector shape cast member property; indicates whether the end points of a path are closed or open.
Vector shapes must be closed in order to contain a fill.
The value can be as follows:
—the end points are closed.
TRUE
—the end points are open.
FALSE
closedCaptions
Usage
-- Lingo syntax
dvdObjRef.closedCaptions
// JavaScript syntax
dvdObjRef.closedCaptions;
Description
DVD property. Determines whether closed captioning is enabled (
not be enabled (
692
Chapter 14: Properties
property of the last active sprite that was clicked to a
foreColor
). Currently unsupported on the Macintosh. Read/write.
FALSE
), or if it is not or could
TRUE

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