-- Lingo syntax _movie.beepOn // JavaScript syntax _movie.beepOn;
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.
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);