I am setting up a jwPlayer stream with this video: http://www.schooltv.nl/beeldbank/clip/20101210_dino01Because the file is hosted on that website I have to embed it using their infrastructure (with an xml playlist and their own jwPlayer, version 5.7).I've got everything working except a continuous repeat. The 'repeat: always' option doesn't work. The onComplete event doesn't fire either. This is the code, which is almost similar to their own embed code:http://dev.jasperheeffer.nl/dinovid/schooltv_new.htmlThe onTime event does work for repeat on my pc (commented out in the code). But alas it doesn't seem to fire on the pc where this app needs to be installed. For debugging I added the controlbar and playlist to the player.\[code\]<html><head> <title>NMB Video</title> <link rel="stylesheet" href="http://stackoverflow.com/questions/14508080/assets/nmb_video.css"> <script type="text/javascript" src="http://stackoverflow.com/questions/14508080/assets/jquery.js"></script> <script type='text/javascript' src='http://www.schooltv.nl/beeldbank/shared/applications/jwplayer/js/jwplayer.js'></script> <script type="text/javascript" src="http://www.ntr.nl/static/js/loadAAPIVideo.js"></script><script type='text/javascript'>$(function() { loadAAPIVideoUrl("20101210_dino01",function(streamid,streamurl){ jwplayer("stvbb3054251").setup({ link:"http://www.schooltv.nl/beeldbank/clip/20101210_dino01", width: 800, height: 500, image: "http://www.schooltv.nl/beeldbank/mmbase/images/3683800/20101210_dino01.jpg", file: streamurl, modes: [ {type: "flash", src: "http://www.schooltv.nl/beeldbank/shared/applications/jwplayer/swf/NTRPlayer.swf", config:{ provider: "http://www.schooltv.nl/beeldbank/shared/applications/jwplayer/swf/adaptiveProvider.swf" } }, {type: "html5" } ], title:'Dinosaurus op de vlucht', author:'NTR', date:'17-01-2011', description:'Timo de T-rex wil een ei eten. Dat is niet zonder gevaar.', controlbar: 'top', 'playlist.position': 'top', image:'http://www.schooltv.nl/beeldbank/mmbase/images/3683801/20101210_dino01.jpg', repeat: 'always', dock: false, autostart: true, fullscreen:true, events: { /* onTime: function(event) { if (event.position > 280) { alert('time!'); jwplayer().seek(0).play(true); } }, */ onComplete: function() { alert('complete'); jwplayer().seek(0).play(true); } } }); });});</script></head><body style="overflow: hidden;"><!--<div id="standby"> <h1><span>SchoolTV: Timo de T-Rex</span><br>Raak het scherm aan om de film te bekijken.</h1></div>--><div class="player flash schooltv_beeldbank mediaplayer"> <div id="ivpd3054251" class="ivplayerdata" style="display:none;"></div> <video id="stvbb3054251" controls width="348" height="178" poster="http://www.schooltv.nl/beeldbank/mmbase/images/3683800/20101210_dino01.jpg"> </video></div></body></html>\[/code\]