0

我使用 Dreamweaver CS3 编辑Intranet页面,我插入 Flash 视频,Dreamweaver CS3 为我插入代码。我注意到插入的代码有一些互联网地址。我想知道假设我的用户无法连接互联网,可以播放视频吗?

假设他们的操作系统是 Windows XP,已经安装了 Flash Player 7 或更高版本。

<p>
  <script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0','width','600','height','340','id','FLVPlayer','src','FLVPlayer_Progressive','flashvars','&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=videos/GLD_01&autoPlay=false&autoRewind=false','quality','high','scale','noscale','name','FLVPlayer','salign','lt','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','FLVPlayer_Progressive' ); //end AC code
</script>
  <noscript>
  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="600" height="340" id="FLVPlayer">
    <param name="movie" value="FLVPlayer_Progressive.swf" />
    <param name="salign" value="lt" />
    <param name="quality" value="high" />
    <param name="scale" value="noscale" />
    <param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=videos/GLD_01&autoPlay=false&autoRewind=false" />
    <embed src="FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=videos/GLD_01&autoPlay=false&autoRewind=false" quality="high" scale="noscale" width="600" height="340" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" />  
  </object>
  </noscript>
</p>
4

1 回答 1

0

是的,它会正常工作。如果安装了插件,则不使用 and 参数,即使未安装插件,当前浏览器也不会使用andcodebase参数。pluginspage

在一些较旧的浏览器上,它们曾经提示用户导航到引用的页面以下载插件,但较新的浏览器甚至不这样做。

于 2013-04-11T20:46:44.813 回答