detect end of song - SoundJS

1.1k Views Asked by At

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
});
1

There are 1 best solutions below

3
On

I think you can do the below code based off this site: http://createjs.com/docs/soundjs/classes/Sound.html

instance.on("complete", this.handleComplete, this);