1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 22:50:23 +00:00
QB64-PE/internal/help/_SNDLIMIT.txt
2016-03-18 08:36:04 -03:00

30 lines
752 B
Plaintext

{{DISPLAYTITLE:_SNDLIMIT}}
The [[_SNDLIMIT]] statement stops playing a sound after it has been playing for a set number of seconds.
{{PageSyntax}}
::: '''_SNDLIMIT''' {{Parameter|handle&}}, {{Parameter|numberofseconds!}}
{{Parameters}}
* The ''handle&'' variable name is created using the [[_SNDOPEN]] function from a loaded sound file.
* The ''numberofseconds'' is a [[SINGLE]] value of seconds that the sound will play.
{{PageDescription}}
*Sets how long a sound will be played in seconds.
*Set the limit to 0 seconds to remove the limit.
*Cannot be set for playing a looping sound.
{{PageExamples}}
{{CodeStart}} '' ''
{{Cl|_SNDLIMIT}} h&, 5.5 '' ''
{{CodeEnd}}
{{PageSeeAlso}}
* [[_SNDOPEN]], [[_SNDLEN]]
{{PageNavigation}}