Name
Beep -- play the system beep (V8.0)
Synopsis
Beep([type])
Function
This function can be used to play the system's default beep sound. For systems which support different beep sounds for different contexts, you can pass the optional type argument to specify which beep sound should be played.

The following beep types are currently supported:

#BEEPSYSTEM:
System beep sound. This is the default.

#BEEPERROR:
Error beep sound.

#BEEPWARNING:
Warning beep sound.

#BEEPQUESTION:
Question beep sound.

#BEEPINFORMATION:
Information beep sound.

Note that not all operating systems support all kinds of beeps. Only #BEEPSYSTEM is supported on every platform.

Inputs
type
optional: type of beep sound to play (defaults to #BEEPSYSTEM)
Example
Beep()
The code above plays the default beep.

Show TOC