You could try this: open Actions.as file and find this block of code:
Code:
FC["onComplete"] = function () {
if (!_global.seeking) {
middleBtn_mc.gotoAndStop(2);
vid_mc.blur();
_global.__complete = true;
}
};
replace it with
Code:
FC["onComplete"] = function () {
if (!_global.seeking) {
next_mc.onClick();
}
};