jQuery と通信するにはフラッシュが必要です。
ここに私のフラッシュコードがあります:
if (ExternalInterface.available)
{
ExternalInterface.call('function(){ MyFunction(); }');
ExternalInterface.call('function(){ alert("Praise Be Jesus Christ!"); }');
}
「アラート」はうまく機能します。私の機能はそうではありません。
これが私のjQueryです:
<script type="text/javascript">
$(document).ready(function()
{
$("#flashContentABOVE").click(MyFunction);
function MyFunction()
{
$("#flashContentABOVE").css("z-index", 4 );
}
});
</script>