cburgoyne
05-07-2008, 09:18 PM
Hello
I am currently working a html page that has a FLASH piece embed into it and a div that shows up when an error has occured durring a search request.
The popup works just fine in IE but in Firefox the pop up is showing up under the FLASH. I need it to show up over the FLASH in Firefox.
Ive pasted the code that I am using to embed the flash piece and div tags below.
Can any one see what is going wrong? or point me in the right dirction to figure out why the div is showing up under the flash piece?
Thanks
:D
<div id=layer1 style="z-index:0; padding:0px;">
<object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="156" height="100" id="quotes" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="/fc/flash/timeupdater.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<param name="bgcolor" value="#ffffff" />
<embed src="/fc/flash/timeupdater.swf" quality="high" bgcolor="#ffffff" width="156" height="100" name="timeupdater" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</div>
<style>
#errorBubble {
z-index:99999; display:none; position:absolute; top:38;
.top:-74; left:664px;
}
</style>
<div id="errorBubble" onclick="hidestuff('errorBubble');" >
Div content goes here
</div>
I am currently working a html page that has a FLASH piece embed into it and a div that shows up when an error has occured durring a search request.
The popup works just fine in IE but in Firefox the pop up is showing up under the FLASH. I need it to show up over the FLASH in Firefox.
Ive pasted the code that I am using to embed the flash piece and div tags below.
Can any one see what is going wrong? or point me in the right dirction to figure out why the div is showing up under the flash piece?
Thanks
:D
<div id=layer1 style="z-index:0; padding:0px;">
<object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="156" height="100" id="quotes" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="/fc/flash/timeupdater.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<param name="bgcolor" value="#ffffff" />
<embed src="/fc/flash/timeupdater.swf" quality="high" bgcolor="#ffffff" width="156" height="100" name="timeupdater" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</div>
<style>
#errorBubble {
z-index:99999; display:none; position:absolute; top:38;
.top:-74; left:664px;
}
</style>
<div id="errorBubble" onclick="hidestuff('errorBubble');" >
Div content goes here
</div>