SNDGETPOS - QB64 Wiki

SNDGETPOS

From QB64 Wiki

Revision as of 08:21, 14 May 2011 by Clippy (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The _SNDGETPOS function returns the current playing position in seconds using a handle from _SNDOPEN.


Syntax:

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:



Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page