良い一日。
コード:
<object id="ItemEditAnimationObject" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="580" height="370">
<param name="movie" value="./6.swf">
<!--[if !IE]>-->
<object id="ItemEditAnimationObject" type="application/x-shockwave-flash" data="./6.swf" width="580" height="370">
</object>
<!--<![endif]-->
</object>
<div id="PlayPause" class="Play"></div>
<div id="Stop"></div>
J:
function OnePlay(){
swfobject.getObjectById('Object').Play();
}
function OnePause(){
swfobject.getObjectById('Object').Pause();
}
function OneStop(){
swfobject.getObjectById('Object').Stop();
}
Jクエリ:
$("#PlayPause").on("click",function(){
if($(this).hasClass("Play")){
$(this).removeClass("Play").addClass("Pause");
OnePlay();
}
else if($(this).hasClass("Pause")){
$(this).removeClass("Pause").addClass("Play");
OnePause();
}
});
$("#Stop").on("click",function(){
OneStop();
});
ID「PlayPause」のボタンをクリックすると、swfが開始します。
しかし、もう一度クリックするか、ID「停止」のボタンをクリックすると、firebug でエラーが発生します。
swfobject.getObjectById(...).Pause は関数ではありません
swfobject.getObjectById(...).Stop は関数ではありません
エラーの場所と、swf オブジェクトを一時停止して停止する方法を教えてください。