Hi,
I m using flowplayer inside an overlay.
My overlay is called as an external page where the player is in it, then i load the player from the overlay like this :
This works.
But on the page which is calling the overlay i need to unload the player once the user click on the close button (if i don't unload it the sound stays in MSIE, known bug).
Si in order to accomplish that unload, i tried several methods
(all inside my onClose: function(content) { } of my overlay)
or
of
Or even :
All of them works with Firefox, but none of them with MSIE or even Safari, it seems that these broswer are unable to retrieve the player that is placed on the overlay.
I hope someone could give me a hand, i spent 3 hours figuring out the problem, without any luck :/
Regards.
I m using flowplayer inside an overlay.
My overlay is called as an external page where the player is in it, then i load the player from the overlay like this :
$(function() {
$f("MyPlayerName").load();
});
This works.
But on the page which is calling the overlay i need to unload the player once the user click on the close button (if i don't unload it the sound stays in MSIE, known bug).
Si in order to accomplish that unload, i tried several methods
(all inside my onClose: function(content) { } of my overlay)
$("div#MyPlayerName_Container_Id").flowplayer(0).unload
or
$("div#MyPlayerName_Container_Id").flowplayer("MyPlayerName").unload
of
$("div#MyPlayerName_Container_Id", content).flowplayer(0).load();
Or even :
$f("*").each(function() {
this.unload
//alert("test");
});
All of them works with Firefox, but none of them with MSIE or even Safari, it seems that these broswer are unable to retrieve the player that is placed on the overlay.
I hope someone could give me a hand, i spent 3 hours figuring out the problem, without any luck :/
Regards.