I have swfobject.embedSWF -ed a youtube player on a page which refreshes the videos when server admin decides to push a new video through ajax/php and the method
player.cueVideoByUrl();
and then
player.playVideo();
But I want to be able to loop a particular video when pushed and not others. To do this either I have to specify a
loop=1
in parameters line when embedding the object which fails the purpose because I can't re-embed the swf object everytime the video refreshes (can I? I tried, it doesn't work). Or I can call something like player.setLoop(true) - but that only works for playlists.