_SNDLIMIT

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search

The _SNDLIMIT statement stops playing a sound after it has been playing for a set number of seconds.


Syntax

_SNDLIMIT handle&, numberOfSeconds!


Parameters

  • The handle& variable name is created using the _SNDOPEN function from a loaded sound file.
  • numberOfSeconds! is a SINGLE value of seconds that the sound will play.


Description

  • 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 numberOfSeconds! to 0 seconds to remove the limit.
  • Pausing or stopping the sound will also remove the limit.


Examples

_SNDLIMIT h&, 5.5


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage