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

Docker data volume common operation code examples

If the developer uses Dockerfile to build the ima...

About WeChat Mini Program to implement cloud payment

Table of contents 1. Introduction 2. Thought Anal...

Sample code for deploying Spring-boot project with Docker

1. Basic Spring-boot Quick Start 1.1 Quick start ...

JavaScript tips to help you improve your coding skills

Table of contents 1. Filter unique values 2. Shor...

Mysql solves the database N+1 query problem

Introduction In orm frameworks, such as hibernate...

Using CSS to implement loading animation of Android system

There are two common loading icons on the web, on...

Teach you step by step to develop a brick-breaking game with vue3

Preface I wrote a few examples using vue3, and I ...

Web designers also need to learn web coding

Often, after a web design is completed, the desig...

Solutions to the Problem of Creating XHTML and CSS Web Pages

The solutions to the problems encountered during x...

Vue realizes the function of uploading photos on PC

This article example shares the specific code of ...

Ubuntu basic settings: installation and use of openssh-server

Record the installation and use of openssh-server...

Docker container orchestration implementation process analysis

In actual development or production environments,...

Detailed explanation of how to copy and backup docker container data

Here we take the Jenkins container as an example ...

MySQL Database Indexes and Transactions

Table of contents 1. Index 1.1 Concept 1.2 Functi...