下拉列表隐藏在flash.swf中

时间:2013-01-29 10:49:42

标签: html5 flash drop-down-menu

         <table>
         <tr>
         <td>
         <div id="dropdownmenu">
         <a href="#">Red</a>
         <a href="#">Orange</a>   
         </div>
         <script type="text/javascript">
         cssdropdown.startchrome("chromemenu")
         </script></td>
         </tr>
         <tr style="background-color:#FFFFFF; vertical-align:top;">
         <td>  
         <object height="251" width="504">
         <param value="Flash.swf" name="movie">
         <param value="Transparent" name="wmode">
         <embed width="504" height="251" src="Flash.swf"/> //here flash is hiding drop 
         </object>
         </td>
         </tr>
         </table>

这里flash.swf隐藏了dropdownmenu。我想在flash外面下拉,但它显示在flash内部

1 个答案:

答案 0 :(得分:0)

您在embed标记中没有wmode参数:

<embed width="504" height="251" src="Flash.swf" wmode="transparent" />

基于<param的{​​{1}}仅针对Internet Explorer