I had the same problem. I added a commercial support request, and did some research of my own.
I found, that if you have ANY
<a href="javascript:someJavascriptCallWhichHasNothingToDoWithFlowPlayer()">clickme</a>
links, the flowplayer hangs in MSIE(only when you click on them of course).
What you have to do is remove all href=javascript: links, and replace them with something like :
.pointer {
cursor: pointer;cursor: hand;
}
<a class="pointer" onclick="someJavascriptCallWhichHasNothingToDoWithFlowPlayer()">clickme</a>
This fixed it for me.
The commercial support solution was :
<quote Tero>
try this little "hackish" solution after the inclusion of flowplayer.js script:
window.onbeforeunload = null;
will this help? If it does - I'll explain a little more.
</quote>
I tested this, and it also works. So if you implement the last solution, you don't have to change all your href=javascript: links...
Good luck! I hope more people can use this sollution