Setting z-index property for flash overlay popup layer in web design does not work

Setting z-index property for flash overlay popup layer in web design does not work
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>

<<:  Detailed explanation of the difference between the default value of the CSS attribute width: auto and width: 100%

>>:  Summary of some HTML code writing style suggestions

Recommend

Implementation of webpack code fragmentation

Table of contents background CommonsChunkPlugin s...

SQL implements LeetCode (180. Continuous numbers)

[LeetCode] 180. Consecutive Numbers Write a SQL q...

MySQL 8.0.18 Installation Configuration Optimization Tutorial

Mysql installation, configuration, and optimizati...

Summary of several submission methods of HTML forms

The most common, most commonly used and most gener...

What does mysql database do?

MySQL is a relational database management system....

Binary installation of mysql 5.7.23 under CentOS7

The installation information on the Internet is u...

Conditional comments to determine the browser (IE series)

<!--[if IE 6]> Only IE6 can recognize <![...

How to use JS to check if an element is within the viewport

Preface Share two methods to monitor whether an e...

How to deploy MySQL master and slave in Docker

Download image Selecting a MySQL Image docker sea...

Introduction and usage examples of ref and $refs in Vue

Preface In JavaScript, you need to use document.q...

MySQL/MariaDB Root Password Reset Tutorial

Preface Forgotten passwords are a problem we ofte...

Pure CSS to achieve a single div regular polygon transformation

In the previous article, we introduced how to use...

MySQL 8.0.20 winx64 installation and configuration method graphic tutorial

This article shares with you the installation and...

Introduction to installing and configuring JDK under CentOS system

Table of contents Preface Check and uninstall Ope...

Example of how to modify styles via CSS variables

question How to modify CSS pseudo-class style wit...