I'm using jQuery Tools Scrollable to display one video at a time. I have it set to be circular. After a video gets to the end, it fires the below event (FYI: using JW Player here).
onComplete: function() {
// Setup scrollable API
var api = jQuery('.home .scrollable').data('scrollable');
// Pause the current video
api.onBeforeSeek(function() {
var paneIndex = this.getIndex();
// Pause the current JW Player
jwplayer(paneIndex).pause(true);
});
// On next/prev event, play video
api.onSeek(function() {
var paneIndex = this.getIndex();
// Play the JW Player if there is one
jwplayer(paneIndex).play(true);
});
// Go to next pane
api.next(400);
}
The problem is that it skips the second video. I guess it has to do with the way Scrollable does the circular scrolling. It clones the first and last items, so when the "next" event occurs, it gets confused with where it is in the loop. So it goes from item 1 to item 3, instead of 1,2,3.