On May 2, 4:32 am, Ariel Flesler <[EMAIL PROTECTED]> wrote: > "Why is my screen going dark when using fadeOut ?"
For me, it is not really a case of going "dark", but more of a "... elements outside of the fade are being affected (flickering?) during the fade ..." So, I just tried this: body { -moz-opacity: 0.9999; } And it works great, but with one big problem... The swfObject embeded element on my page disappeared. I am using Firefox 2.0.0.12 and SlideShowPro: <div id="ssp"> <p>This SlideShowPro photo gallery requires the Flash Player plugin and a web browser with JavaScript enabled.</p> </div> <!-- /#ssp --> <script type="text/javascript"> var ssp_so = new SWFObject("http://www.site.com/slideshowpro.swf", "mediaplayer", "630px", "350px", "9", "#FFFFFF"); ssp_so.addVariable("xmlfile", "http://www.site.com/images.php? album=3"); ssp_so.addParam("quality", "best"); ssp_so.addParam("base", "."); ssp_so.addParam("wmode", "opaque"); ssp_so.write("ssp"); </script> When I removed the "wmode" param, it kinda worked, but there was major redraw problems. I guess I can live with the FF bug for now.