PlaySound()
Syntax
Result = PlaySound(#Sound [, Flags [, Volume]])Description
Start to play the specified #Sound. 'Flags' is optional and can be a combination of the following values:#PB_Sound_Loop : play the sound continuously (starts again when end is reached) #PB_Sound_MultiChannel: play the sound in a new channel instead of stopping the previously played sound. This allows to use the same sound and to play it on different channels at once. 'Result' will be new allocated channel, and can be used by the other sound commands: SoundVolume(), SoundFrequency(), SoundPan() and StopSound().'Volume' is optional and is useful to set the initial volume of the #Sound. The valid values are from 0 (no volume) to 100 (full volume). The default value is 100.
Supported OS
All