windowBehind

Usage

-- Lingo syntax
windowObjRef.windowBehind

// JavaScript syntax
windowObjRef.windowBehind;

Description

Window property; returns a reference to the window that is behind all other windows. Read-only.

Example

These statements set the variable backWindow to the window behind all other windows, and then moves that window to the front:

-- Lingo syntax
backWindow = _player.windowList[5].windowBehind
backWindow.moveToFront()

// JavaScript syntax
var backWindow = _player.windowList[5].windowBehind;
backWindow.moveToFront();

See also

moveToBack(), moveToFront(), Window, windowInFront, windowList