User Guide

692 Chapter 14: Properties
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 foreColor property of the last active sprite that was clicked to a
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:
TRUE—the end points are closed.
FALSE—the end points are open.
closedCaptions
Usage
-- Lingo syntax
dvdObjRef.closedCaptions
// JavaScript syntax
dvdObjRef.closedCaptions;
Description
DVD property. Determines whether closed captioning is enabled (TRUE), or if it is not or could
not be enabled (
FALSE). Currently unsupported on the Macintosh. Read/write.