0% found this document useful (0 votes)
40 views

Flash Hide Drop Down List

The document discusses resolving issues with the z-index of drop down menus appearing behind Flash content by adding wmode=transparent to the params object when using swfobject.embedSWF(). It notes that the params object, which specifies this parameter, must be passed as the second argument to the embedSWF() function after the flashvars object according to the documentation.

Uploaded by

I@Sydney
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
40 views

Flash Hide Drop Down List

The document discusses resolving issues with the z-index of drop down menus appearing behind Flash content by adding wmode=transparent to the params object when using swfobject.embedSWF(). It notes that the params object, which specifies this parameter, must be passed as the second argument to the embedSWF() function after the flashvars object according to the documentation.

Uploaded by

I@Sydney
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

Z index of drop down menu vs.

Flash z index

Adding wmode=transparent to swfobject.embedSWF


You are passing the params object as the wrong argument to the embedSWF()
function. Have a look at the docs – It specifies:

var flashvars = {};


var params = {};
var attributes = {};
swfobject.embedSWF(“myContent.swf”, “myContent”, “300″, “120″,
“9.0.0″,”expressInstall.swf”, flashvars, params, attributes);

As you can see, the flashvars object goes first, THEN the params object.

You might also like