title (Window)

Usage

-- Lingo syntax
windowObjRef.title

// JavaScript syntax
windowObjRef.title;

Description

Window property; assigns a title to a window. Read/write.

Example

This statements assigns the title Planets to the fifth window:

-- Lingo syntax
_player.windowList[5].title = "Planets"

// JavaScript syntax
_player.windowList[5].title = "Planets";

See also

Window