beepOn

Usage

-- Lingo syntax
_movie.beepOn

// JavaScript syntax
_movie.beepOn;

Description

Movie property; determines whether the computer automatically beeps when the user clicks on anything except an active sprite (TRUE), or not (FALSE, default). Read/write.

Scripts that set beepOn should be placed in frame or movie scripts.

Example

This statement sets beepOn to TRUE:

-- Lingo syntax
_movie.beepOn = TRUE

// JavaScript syntax
_movie.beepOn = true;

This statement sets beepOn to the opposite of its current setting:

-- Lingo syntax
_movie.beepOn = not(_movie.beepOn)

// JavaScript syntax
_movie.beepOn = !(_movie.beepOn);

See also

Movie


 

Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/director/mx2004/release_update_en/09_pro61.htm