Lol!
Had to edit this message because last night I simply couldn't get Play Music to work - however hard I tried. I thought the command was broken.
I've just gone back to the snippet I wrote and the damn thing works perfectly today. Doh!
Here's the snippet I wrote...
Load Music "MySong.mp3",1
Set Text Opaque
Print "Press Space To Play Music - Q To Quit"
SongPlaying=0
Repeat
If Inkey$()=" " And SongPlaying=0
Repeat
Until ScanCode()=0
Play Music 1
SongPlaying=1
Endif
If Music Playing(1)=1
Text 0,16,"Playing Music 1 "
Else
Text 0,16,"Not Playing Music 1"
Endif
Until Inkey$()="q"
Stop Music 1
CLS
Print "Any Key To Exit..."
Wait Key
TDK_Man