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

425 B

The _SNDPLAY statement plays a sound designated by a file handle created by _SNDOPEN.

Syntax

_SNDPLAY handle&

Description

  • Make sure that the handle& value is not 0 before attempting to play it.

Example(s)

Checking a handle value before playing


IF h& THEN _SNDPLAY h& 

See Also