I had a similar problem: flowplayer with playlist and some urls with:
all works fine but if I go to url2 then re-click to url1 I had this error:
"uncaught exception: Error in Actionscript. Use a try/catch block to find error."
I change my javascript with:
and all was ok... but I don't know why :-)
$("#url1").click(function(){
$f().play(0);
return false;
});
$("#url2").click(function(){
$f().play(1);
return false;
});
all works fine but if I go to url2 then re-click to url1 I had this error:
"uncaught exception: Error in Actionscript. Use a try/catch block to find error."
I change my javascript with:
$("#url1").click(function(){
try {
$f().play(0);
} finally {
return false;
}
});
$("#url2").click(function(){
try {
$f().play(1);
} finally {
return false;
}
});
and all was ok... but I don't know why :-)