PROBLEMS SOLVED (hopefully)
|
|
Hi guys, Please let me know if the new script lets YouTube functions like seeking and playlist work again. And try out the new autoplay off feature ;) This was the major cause of all your problems (I think). So try it out, I don't want my script to cause people trouble. --aVg |
|
|
Unfortunately, it doesn't seem to be working for me. I have loop, autoplay, even bigMode off and the playlist still won't continue through. |
|
|
Same here, the playlist doesn't work with any combination of options. |
|
|
Hi guys, I'll check it out asap. thanks |
|
|
Hi guys, Do I need to log-in to try out the playlist feature? I can't seem to get it w/ my script off. Is auto-go-to-next-video a built-in youtube feature? (Because if it isn't, I'll be happy to work out this as a new feature). |
|
|
Nope, you don't have to login; try this for example: http://www.youtube.com/watch?v=h1xBDnytoi8&feat... You can trigger 'autoplay' on and off, as well as Play Next to skip ahead a track without autoplay turning off on you. |
|
|
Playlists still do not work with the latest version. I got them to work by changing
if(loop) {
handleWatchPagePlayerStateChange=function(state) {
if (state == 0) {
try {
player.seekTo(0,true);
player.playVideo();
} catch (e) {
if (watchIsPlayingAll)
gotoNext();
}
}
};
player.addEventListener("onStateChange","handleWatchPagePlayerStateChange");
}
to
handleWatchPagePlayerStateChange=function(state) {
if (state == 0) {
if(loop) {
player.seekTo(0,true);
player.playVideo();
}
if (watchIsPlayingAll) {
gotoNext();
}
}
};
player.addEventListener("onStateChange","handleWatchPagePlayerStateChange");
I guess when you reload the player the event handlers get cleared. |
|
|
Thanks for that chironex. I haven't tested it, but I believe you and thank you very much! I'm sure everyone will appreciate this :) Your logic is quite correct; the event handler is only set if the person wanted to loop (which is sort of defeating the purpose; looping = no auto playlist anyway, duh) Guess I didn't think that one out too clearly :P |