OK, I'm stumped. One of the flash banners I run is directly below the Notifications dropdown for PMs.
In order to allow the dropdown to go over the flash banner I modified the code and added wmode="transparent" as shown below...
Code:
$embed = '<embed src="' . $bburl . '/bas_wrapper.swf" FlashVars="banner=' . $image . '&jlink=' . $url . iif($rs['width'], '&bwidth=' . $rs['width']) . iif($rs['height'], '&bheight=' . $rs['height']) . '" wmode="transparent" loop="false" pluginspage="http://www.macromedia.com/go/get/flashplayer" type="application/x-shockwave-flash" ' . iif($rs['width'], ' width="' . $rs['width'] . '"') . iif($rs['height'], ' height="' . $rs['height'] . '"') . '></embed>';
That works very well with one problem. When I click on the flash banner to be taken to the link for it, many times I get 2 windows that open. One with the proper link and one with the banner by itself.
Any ideas how to fix this?