User Guide
top (3D) 565
Example
This handler deletes the timeout object named Random Lightning:
-- Lingo syntax
on exitFrame
timeout("Random Lightning").forget()
end
// JavaScript syntax
function exitFrame() {
timeout("Random Lightning").forget();
}
See also
new(), timeoutList, timeoutHandler, time (timeout object), name (timeout),
period, persistent, target
titleMenu()
Usage
-- Lingo syntax
dvdObjRef.titleMenu()
// JavaScript syntax
dvdObjRef.titleMenu();
Description
DVD method; displays the title menu.
Parameters
None.
Example
This statement displays the title menu:
-- Lingo syntax
member(1).titleMenu()
// JavaScript syntax
member(1).titleMenu();
See also
DVD
top (3D)
Usage
modelResourceObjectReference.top
Description
3D command; when used with a model resource whose type is #box, allows you to both get and
set the
top property of the model resource.
The
top property determines whether the top of the box is sealed (TRUE) or open (FALSE). The
default value is
TRUE.