By default, Flash will always be displayed at the top level of the page, which means that if there are some DHTML layers on the page, these layers will be covered by Flash. Even setting the z-index property does not help. If you need some LightBox popups, Flash on the page might make the effect ugly. Adobe's technical knowledge base provides a solution: Three places to look ①Add the wmode parameter to the <object> tag: <param name="wmode" value="transparent">; ② If there is an <embed> tag, add a similar parameter to the <embed> tag: wmode="transparent"; ③ In order to solve the problem that [when the mouse moves to the FLASH in the web page, an outer frame will appear, prompting "Click to activate this control"], we often use the AC_FL_RunContent() function that comes with DM to insert flash. If you use this function, you must also add the wmode attribute definition to its parameters, as follows: Copy code The code is as follows:<script type="text/javascript"> AC_FL_RunContent('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','900','height','220','src','headmenu','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','headmenu','wmode','transparent' ); //end AC code </script> |
>>: Summary of some HTML code writing style suggestions
Table of contents background CommonsChunkPlugin s...
[LeetCode] 180. Consecutive Numbers Write a SQL q...
Mysql installation, configuration, and optimizati...
The most common, most commonly used and most gener...
MySQL is a relational database management system....
The installation information on the Internet is u...
<!--[if IE 6]> Only IE6 can recognize <![...
Preface Share two methods to monitor whether an e...
Download image Selecting a MySQL Image docker sea...
Preface In JavaScript, you need to use document.q...
Preface Forgotten passwords are a problem we ofte...
In the previous article, we introduced how to use...
This article shares with you the installation and...
Table of contents Preface Check and uninstall Ope...
question How to modify CSS pseudo-class style wit...