I am using SoundJS to play music. How can I detect when a song has ended?
SoundJS can detect events, is there an event for when a song ends? something like this:
var songInstance = createjs.Sound.play("sound");
songInstance.on("_SONG_ENDED_", function(){
//do something after song has ended
});
I think you can do the below code based off this site: http://createjs.com/docs/soundjs/classes/Sound.html