restore()

Usage

-- Lingo syntax
windowObjRef.restore()

// JavaScript syntax
windowObjRef.restore();

Description

Window method; restores a window after it has been maximized.

Use this method when making custom titlebars for movies in a window (MIAW).

Parameters

None.

Example

This statement restores the maximized window named Control Panel:

-- Lingo syntax
window("Control Panel").restore()

// JavaScript syntax
window("Control Panel").restore();

See also

maximize(), Window