Is it possible to have a playlist when using the overlay plugin? My goal is to be able to attach a certain FLV(an intro flv) in front of another FLV(mainvideoA), but only with this FLV(mainvideoA). The rest of the FLVs on the page will play without this intro flv.
My code:
A url to preview what I have thus far:
http://www.lightwavedigital.com/clients/promisebuildings/
THANKS!
My code:
$(function() {
$("img[@rel]").overlay({
speed: 1000,
clip: {
autoPlay: false,
loop: false
},
onBeforeLoad: function() {
this.expose();
},
onLoad: function(content) {
$("a.player", content).flowplayer(0).load();
},
onClose: function(content) {
$("a.player", content).flowplayer(0).unload();
$.unexpose();
}
});
$("a.player").flowplayer("http://www.lightwavedigital.com/clients/promisebuildings/swf/flowplayer-3.0.3.swf", {
clip: { autoPlay:false, autoBuffering: true },
plugins: {
controls: {
autoHide: 'always',
fullscreen:false
}
}
});
});
A url to preview what I have thus far:
http://www.lightwavedigital.com/clients/promisebuildings/
THANKS!