1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 10:30:36 +00:00
QB64-PE/internal/help/_SNDLIMIT.txt
SteveMcNeill 33adc04fc4 Add temp folder to repo. It's necessary as well!
Just more initial setting on... nothing much to see here.
2022-04-28 13:39:56 -04:00

32 lines
946 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 {{Parameter|handle&}} variable name is created using the [[_SNDOPEN]] function from a loaded sound file.
* {{Parameter|numberOfSeconds!}} is a [[SINGLE]] value of seconds that the sound will play.
{{PageDescription}}
*Sets how long a sound will be played in seconds. If the limit is set after the sound is started, the timer starts counting down from when the limit is applied, not from the start of playing.
*Set {{Parameter|numberOfSeconds!}} to 0 seconds to remove the limit.
*Pausing or stopping the sound will also remove the limit.
{{PageExamples}}
{{CodeStart}} '' ''
{{Cl|_SNDLIMIT}} h&, 5.5 '' ''
{{CodeEnd}}
{{PageSeeAlso}}
* [[_SNDOPEN]], [[_SNDLEN]]
{{PageNavigation}}
<