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.
Содержание DIRECTOR MX 2004-DIRECTOR SCRIPTING
Страница 1: ...DIRECTOR MX 2004 Director Scripting Reference...
Страница 48: ...48 Chapter 2 Director Scripting Essentials...
Страница 100: ...100 Chapter 4 Debugging Scripts in Director...
Страница 118: ...118 Chapter 5 Director Core Objects...
Страница 594: ...594 Chapter 12 Methods...
Страница 684: ...684 Chapter 14 Properties See also DVD...
Страница 702: ...702 Chapter 14 Properties See also face vertices vertices flat...
Страница 856: ...856 Chapter 14 Properties JavaScript syntax sprite 15 member member 3 4...
Страница 889: ...netPresent 889 _player alert Sorry the Network Support Xtras could not be found See also Player...
Страница 1102: ...1102 Chapter 14 Properties...