Beep

Generates the Windows default beep sound by calling the Windows API MessageBeep() function. The exact result of this call depends on the hardware and system software configuration. On some systems with half-duplex sound systems, you must turn off the microphone before using this command for users to hear the beep.

Syntax

Beep

This command does not have any arguments.

Example

The following script turns off the microphone, plays the beep sound, waits for five seconds to ensure that the sound finishes playing, and turns the microphone back on

SetMicrophone 0
Beep
Wait 5
SetMicrophone 1