1 reply [Last post]
jderosa3
jderosa3's picture
User offline. Last seen 2 years 33 weeks ago. Offline
newbie
Timezone: GMT-4
Joined: 2009-10-01
Posts: 1
Points: 1

I have a site that I am working on located here:

http://clients.mirageadv.com/tiki/index.php

This drop down works above the flash banner in FF (Mac), Safari, Chrome, but not in FF or IE (PC)... I have tried the following:

The solution that I found all over the web and seemed to work for most people:
Make sure your embed and object codes include the wmode parameter set to transparent:
param name=”movie” value=”xxx.swf”
param name=”quality” value=”high”
param name=”wmode” value=”transparent”

This has worked in the past for me... but not this time around...

my css file is located here: master.css

Any ideas? this is driving me nuts.

Thanks in advance for any help.

Tony
Tony's picture
User offline. Last seen 42 min 46 sec ago. Offline
rank Moderator
Moderator
Timezone: GMT+10
Joined: 2003-03-12
Posts: 3805
Points: 1240

Hi jderosa3, Your using

Hi jderosa3,
Your using JavaScript to load the flash.

AC_FL_RunContent( 'codebase',
'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0',
'width','980','height','472','src','loader','quality','high',
'pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','loader' ); //end AC code

In that JavaScript function call I can't see the parameters for wmode. Look up wherever you got AC_FL_RunContent from and see how you are meant to add wmode.

Your question may have already been answered, search and read before you ask.