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
If the developer uses Dockerfile to build the ima...
Table of contents 1. Introduction 2. Thought Anal...
1. Basic Spring-boot Quick Start 1.1 Quick start ...
Table of contents 1. Filter unique values 2. Shor...
Introduction In orm frameworks, such as hibernate...
background: I have done a project before, which r...
There are two common loading icons on the web, on...
Preface I wrote a few examples using vue3, and I ...
Often, after a web design is completed, the desig...
The solutions to the problems encountered during x...
This article example shares the specific code of ...
Record the installation and use of openssh-server...
In actual development or production environments,...
Here we take the Jenkins container as an example ...
Table of contents 1. Index 1.1 Concept 1.2 Functi...