User Guide
1044 Chapter 14: Properties
Example
This statement displays in the Message window the available titlebar options for the window
named Elements:
-- Lingo syntax
trace(window("Elements").titlebarOptions)
// JavaScript syntax
trace(window("Elements").titlebarOptions);
These statements set the icon property to the bitmap cast member named smallIcon:
-- Lingo syntax
window("Elements").titlebarOptions.icon = member("smallIcon")
// JavaScript syntax
window("Elements").titlebarOptions.icon = member("smallIcon");
See also
appearanceOptions, displayTemplate, Window
titleCount
Usage
-- Lingo syntax
dvdObjRef.titleCount
// JavaScript syntax
dvdObjRef.titleCount;
Description
DVD property; returns the number of available titles. Read-only.
The number of available titles ranges from 1 to 99.
See also
DVD
toolXtraList
Usage
-- Lingo syntax
_player.toolXtraList
// JavaScript syntax
_player.toolXtraList;
Description
Player property; returns a linear list of all tool Xtra extensions available to the Director player.
Read-only.
Example
This statement displays in the Message window all available tool Xtra extensions.
-- Lingo syntax
put(_player.toolXtraList)