Plays a waveform sound
#include <WinAPIError.au3>
_WinAPI_MessageBeep ( [$iType = 1] )
$iType | [optional] The sound type, as identified by an entry in the registry. This can be one of the following values: 0 - Simple beep. If a sound card is not available, the speaker is used. 1 - OK 2 - Hand 3 - Question 4 - Exclamation 5 - Asterisk |
Success: | True |
Failure: | False, call _WinAPI_GetLastError() to get extended error information |
After queuing the sound, the MessageBeep function returns control to the calling function and plays the sound
asynchronously. If it cannot play the specified alert sound, MessageBeep attempts to play the system default
sound. If it cannot play the system default sound, the function produces a standard beep sound through the
computer speaker.
Search MessageBeep in MSDN Library.