appMinimize()

Usage

-- Lingo syntax
_player.appMinimize()

// JavaScript syntax
_player.appMinimize();

Description

Player method; in Microsoft Windows, causes a projector to minimize to the Windows Task Bar. On the Macintosh, causes a projector to be hidden.

On the Macintosh, reopen a hidden projector from the Macintosh application menu.

This method is useful for projectors and MIAWs that play back without a title bar.

Parameters

None.

Example

--Lingo syntax
on mouseUp me
   _player.appMinimize()
end
   

// JavaScript syntax
function mouseUp() {
   _player.appMinimize();
}

See also

Player