PlaySoundFile method
PlaySoundFile(szSound$)
PlaySoundFile
The PlaySoundFile(name) method plays a Windows .wav audio file in the client. The sound file should first be copied to the client's cache using COPY OBJECT. If the sound cannot be played the default system event sound is used instead.
REM Copy wav file into KClient cache COPY OBJECT "/mysounds/alert.wav" TO "alert.wav" REM play the file Client.PlaySoundFile("alert.wav")