OO JS and SoundManager2

I will be the first to admit, I don’t know much about JS and am just starting to wrap my mind around object oriented js.

I have this small bit of code that has been giving me problems for days.

playlistItems[numItems-1] = soundManager.createSound({
id : songId,
url : $(this).attr(‘href’),
whileloading : player.whileloading,
onfinish: next
});

“next” is a function on the same object that playlistItems is defined on, but it doesn’t ever seem to fire. I tried this.next as well, but it just gives me a runtime error…

Please help.

On the SoundManager2 documentation page I see that there’s one called playNextSound
Would that happen to be what you’re after?