• 締切済み

swfobjectのwmodeを再生中に変更

swfobject2.2を使ってフラッシュムービーをホームページに埋め込んでいます。 <script type="text/javascript"> var swfVersionStr = "10.1.0"; var xiSwfUrlStr = "expressInstall.swf";//インストールを勧めるswf var flashvars = {}; var params = {}; params.quality = "high"; params.bgcolor = "#ffffff"; params.allowscriptaccess = "sameDomain"; params.allowfullscreen = "true"; params.wmode = "direct"; var attributes = {}; attributes.id = "xxxxx"; attributes.name = "xxxxx"; attributes.align = "middle"; attributes.wmode = "direct"; swfobject.embedSWF("xxxxx.swf", "flashContent", "480", "320", swfVersionStr, xiSwfUrlStr, flashvars, params, attributes); </script> wmode = "direct"の部分ですが、ムービーの再生中にwmode = "transparent"に 変更できるでしょうか? javascriptでどうすればいいのかお願いします。

みんなの回答

  • zip256
  • ベストアンサー率100% (2/2)
回答No.2

No1です。 注意散漫ですね。なんか間違ってしまいました。 <from></from> は <form></form> に直してください。

  • zip256
  • ベストアンサー率100% (2/2)
回答No.1

<script type='text/javascript'> function wmode_chg(){ flashContent.wmode = 'transparent'; } </script> <from> <input type='button' id='button1' value='書換' onClick='wmode_chg()'> </from> 試してないので外してるかもしれませんが、 こんなかんじで、どうでしょうか。

関連するQ&A