(AGK version: 108.14)
Submitted: 2013-07-01 15:05:12
Setvirtualresolution(640,480)
ResetTimer()

//Check for required custom font files in media folder
fileok=GetFileExists("music.mp3")
If fileok<>1
    Repeat
        Print ("music.mp3 needs to be in your media folder")
        Sync()
    Until Timer()>5
EndIF

If fileok=1
    music = LoadMusic("music.mp3")
    PlayMusic(1)
    Repeat
        If GetMusicPlaying()
            Print ("Music Playing")
        EndIf
        Sync()
    Until Timer()>10
    DeleteMusic(1)
    Print ("Music Deleted")
    Sync()
    Sleep(2000)
EndIf
End
Help make AGK better by submitting an example for this command!
(All examples are subject to approval)
Login to post an example of your own.