Director Help

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 Mac, causes a projector to be hidden.

On the Mac, reopen a hidden projector from the Mac 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