Is there any way to hide the controls of the preview player but not affect the main player..?
thanks
<!-- include latest Flowplayer javascript file -->
<script language="javascript" src="path/to/flowplayer-3.2.8.js"></script>
<!-- player container with optional splash image -->
<a href="path/to/video_file" id="playerContainer">
<img src="path/to/splash_image" />
</a>
Following script will install Flowplayer into our player container
<script language="javascript">
// our custom configuration is given in third argument
flowplayer("playerContainer", "path/tohttp://releases.flowplayer.org/swf/flowplayer-3.2.11.swf",{
plugins: {
controls: null
}
});
</script>
</script>
<?php echo $javascript->link('home/flowplayer-3.2.2.min'); ?>
<script type="text/javascript">
function play_video2(video_url,screenshot_url)
{
document.getElementById('preview').innerHTML='';
//document.getElementById('preview').innerHTML='<img src="'+screenshot_url+'">';
flowplayer("preview",{src: "<?php echo SITE_PATH;?>files/flowplayer.commercial-3.2.2-2.swf", wmode: 'transparent'}, {
key: '#$fdb91253b97e765fcd2',
clip: {
url: video_url,
autoPlay: false
}
plugins: {
controls: null
}
});
}
</script>
flowplayer("preview",{src: "http://www.flickwit.com/files/flowplayer.commercial-3.2.2-2.swf", wmode: 'opaque'}, {
key: '#$fdb91253b97e765fcd2',
clip: {
url: "http://flickwit.s3.amazonaws.com/734b68022d818f322387512fe6e79b14.mp4"
}
});
flowplayer("preview",{src: "http://www.flickwit.com/files/flowplayer.commercial-3.2.2-2.swf", wmode: 'opaque'}, {
key: '#$fdb91253b97e765fcd2',
clip: {
url: "http://flickwit.s3.amazonaws.com/734b68022d818f322387512fe6e79b14.mp4"
},
plugins: {
controls: null
}
});
<!-- include latest Flowplayer javascript file -->
<script language="javascript" src="path/to/flowplayer-3.2.8.js"></script>
<!-- player container with optional splash image -->
<a href="path/to/video_file" id="playerContainer">
<img src="path/to/splash_image" />
</a>
Following script will install Flowplayer into our player container
<script language="javascript">
// our custom configuration is given in third argument
flowplayer("playerContainer", "path/tohttp://releases.flowplayer.org/swf/flowplayer-3.2.11.swf",{
plugins: {
controls: {opacity: 0}
}
});
</script>
logo: {
opacity: 0
}
<!-- include latest Flowplayer javascript file -->
<script language="javascript" src="path/to/flowplayer-3.2.8.js"></script>
<!-- player container with optional splash image -->
<a href="path/to/video_file" id="playerContainer">
<img src="path/to/splash_image" />
</a>
Following script will install Flowplayer into our player container
<script language="javascript">
// our custom configuration is given in third argument
flowplayer("playerContainer", "path/tohttp://releases.flowplayer.org/swf/flowplayer.commercial-3.2.11.swf",{
key: '#$cbc37119d21a135ca10',
logo: {
opacity: 0
}
});
</script>
tooltips: null
and even tooltips with opacity, but I cannot get that to work either without getting a player error.
<script>
flowplayer("preview",{src: "<?php echo SITE_PATH;?>files/flowplayer.commercial-3.2.2-2.swf", wmode: 'opaque'}, {
key: '#$fdb91253b97e765fcd2',
clip: {
url: "<?php echo $video_url;?>"
},
plugins: {
controls: {opacity: 0},
},
logo: {
opacity: 0
}
});
</script>
<!-- include latest Flowplayer javascript file -->
<script language="javascript" src="path/to/flowplayer-3.2.8.js"></script>
<!-- player container with optional splash image -->
<a href="path/to/video_file" id="playerContainer">
<img src="path/to/splash_image" />
</a>
Following script will install Flowplayer into our player container
<script language="javascript">
// our custom configuration is given in third argument
flowplayer("playerContainer", "path/tohttp://releases.flowplayer.org/swf/flowplayer-3.2.11.swf",{
plugins: {
controls: {
opacity: 0,
tooltips: null
}
}
});
</script>