【问题标题】:I'm unable to get ExternalInterface.call to work in ie7我无法让 ExternalInterface.call 在 ie7 中工作
【发布时间】:2010-08-11 14:47:02
【问题描述】:
<script type="text/javascript" src="swfobject/swfobject.js"></script>

<script language="javascript" >
swfobject.registerObject("myId", "10.0.0");


function execute(){

return a;

}

</script>



<body style="margin:0">


<object id="myId" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800" height="500">

<param name="movie" value="helpdeskApp_three.swf" />
<param name="allowScriptAccess" value="always" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="helpdeskApp_three.swf" width="800" height="500" >
<!--<![endif]-->
<div>
<h1>Alternative content</h1>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>

我有这个基于这个问题:Getting current URL in Flash from JavaScript using ExternalInterface and IE

但是,这在 Firefox 和 ie 中都不起作用。

如果我像这样将我的 Flash 嵌入到浏览器中:

<embed src="helpdeskApp_three.swf" id="flash" quality="high" scale="exactfit" width="800" height="500" name="movie" align="middle" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"/>

这适用于 Firefox,但不适用于 ie。

嵌入我的 Flash 电影以使其适用于所有浏览器的正确方法是什么?

谢谢

【问题讨论】:

    标签: javascript flash actionscript-3


    【解决方案1】:

    取自:http://code.google.com/p/swfobject/wiki/documentation#STEP_1:_Embed_both_Flash_content_and_alternative_content_using_s

     <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="780" height="420">
        <param name="movie" value="myContent.swf" />
        <!--[if !IE]>-->
        <object type="application/x-shockwave-flash" data="myContent.swf" width="780" height="420">
        <!--<![endif]-->
          <p>Alternative content</p>
        <!--[if !IE]>-->
        </object>
        <!--<![endif]-->
      </object>
    

    【讨论】:

      猜你喜欢
      • 2012-07-04
      • 1970-01-01
      • 2014-05-14
      • 1970-01-01
      • 1970-01-01
      • 2016-09-02
      • 2015-05-20
      • 2015-10-22
      • 2023-03-24
      相关资源
      最近更新 更多