1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/_SNDPLAYING.md
2022-12-24 21:14:48 -06:00

24 lines
532 B
Markdown

The [_SNDPLAYING](_SNDPLAYING) function returns whether a sound is being played. Uses a handle from the [_SNDOPEN](_SNDOPEN) or [_SNDCOPY](_SNDCOPY) functions.
## Syntax
> isPlaying% = [_SNDPLAYING](_SNDPLAYING)(handle&)
## Description
* Returns false (0) if a sound is not playing or true (-1) if it is.
* If a sound is paused, [_SNDPLAYING](_SNDPLAYING) returns 0.
## Example(s)
```vb
PRINT _SNDPLAYING(h&)
```
## See Also
* [_SNDPLAY](_SNDPLAY), [_SNDPAUSE](_SNDPAUSE), [_SNDSTOP](_SNDSTOP)
* [_SNDPAUSED](_SNDPAUSED)