SNDGETPOS
From QB64 Wiki
The _SNDGETPOS function returns the current playing position in seconds using a handle from _SNDOPEN.
- position = _SNDGETPOS(handle&)
Description:
- Returns the currently playing position in seconds from sound files with the SETPOS capability.
- If a sound isn't playing, it returns 0.
- If a sound is paused, it returns the paused position.
- For a looping sound, the value returned continues to increment and does not reset to 0 when the sound loops.
Code Examples:
PRINT _SNDGETPOS(h&)
See also: