Hi,
I've search trough the forum and documentation, but I couldn't find an answer regarding fullscreen disable on double click.
Here is my code.
I've search trough the forum and documentation, but I couldn't find an answer regarding fullscreen disable on double click.
Here is my code.
<script>
flowplayer("player", "/flowplayer-3.1.5.swf", {
plugins: {
controls: null
},
// pause on first frame of the video
clip: {
onBegin: function () { this.getPlugin("play").hide(); },
autoPlay: true,
onBeforePause : function(){
return false; },
onBeforeFinish: function() { return false; }
}
});
Thanks.