GLBasic User Manual

Main sections

STOPMUSIC

STOPMUSIC



To stop any music that is currently playing call STOPMUSIC.

With ISMUSICPLAYING() you can test whether the music is currently playing or not.

Sample:
 
PLAYMUSIC "Music.mp3", TRUE
PRINT "Music!", 100, 100
SHOWSCREEN
MOUSEWAIT
if ISMUSICPLAYING() = TRUE then STOPMUSIC // GLBasic does this automatically when ending

See also...