Return to Snippet

Revision: 17302
at August 31, 2009 05:33 by nico65


Initial Code
<a 
    href="media/upload/video/helionics_webbanner_120x600.flv" 
    style="display:block;width:120px;height:600px;" 
    id="player"> 
</a>

<script language="JavaScript"> 
flowplayer("player", "media/swf/flowplayer-3.1.2.swf" ,{ 
plugins: { 
   // disable autoloading of the controlbar plugin 
   controls: null 
}, 
// disable the "overlay play button" (for some reason this does not work in this forum) 
// play: null, 
 
// prevent pausing 
onBeforePause: function() { 
    return false; 
}, 
 
// make the video loop 
onBeforeFinish: function() { 
    return false; 
} 
}); 
</script>

Initial URL
http://static.flowplayer.org/forum/2/25077

Initial Description


Initial Title
flowplayer without controlbar and in loopmode

Initial Tags


Initial Language
HTML