Hi, thanks for getting back to me.
I've made those changes and now the logo is working correctly, but it's still showing the Flowplayer logo while the video is loading.
Here is the revised code:
I've made those changes and now the logo is working correctly, but it's still showing the Flowplayer logo while the video is loading.
Here is the revised code:
$(function () {
var player = $f("player", "/scripts/flowplayer.commercial-3.2.7.swf", {
// player config into 3rd argument of the flowplayer function
key: '#$xxxxxxxxxxx',
logo: {
url: '/img/sonru-logo-video.png',
fullscreenOnly: false,
displayTime: 10
},
plugins: {
controls: {
url: '/scripts/flowplayer.controls-3.2.5.swf',
backgroundColor: "#FFFFFF",
backgroundGradient: "none",
sliderColor: '#FFFFFF',
sliderBorder: '1.5px solid rgba(160,160,160,0.7)',
volumeSliderColor: '#FFFFFF',
volumeBorder: '1.5px solid rgba(160,160,160,0.7)',
timeColor: '#ffffff',
durationColor: '#535353',
tooltipColor: 'rgba(255, 255, 255, 0.7)',
tooltipTextColor: '#000000'
}
}
});
$("a[rel]").overlay({
mask: "#000000",
effect: "apple",
onLoad: function () {
player.load();
},
onClose: function () {
player.unload();
}
});
});