So your issue there is you are trying to apply your CSS styling to the flash object. It should be applied to a wrapper DIV like below (also ,I changed your relative paths to absolute so it could be tested from anywhere):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Main</title> <style type="text/css"> <!-- html, body, #content { height:100%; } body { margin:0; padding:0; overflow:hidden; } --> </style> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <script type="text/javascript" src="http://furyan.be/flash/swfobject/swfobject.js"></script> <script type="text/javascript"> swfobject.registerObject("myFlashContent", "9.0.0"); </script> </head> <body> <div id="content"> <object id="myFlashContent" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca b#version=9,0,0,0" width="100%" height="100%"> <param name="movie" value="http://furyan.be/flash/swfobject/Main.swf" /> <param name="salign" value="lt" /> <param name="scale" value="noscale" /> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="http://furyan.be/flash/swfobject/Main.swf" width="100%" height="100%"> <param name="scale" value="noscale" /> <param name="salign" value="lt" /> <!--<![endif]--> <p>Alternative content</p> <!--[if !IE]>--> </object> <!--<![endif]--> </object> </div> </body> </html> Also, your salign for the FF block was wrong. It should match twe IE block param value. Aran -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of furyan Sent: Friday, 16 January 2009 12:09 PM To: SWFObject Subject: It doesnt show in FireFox 3. Hello In firefox3 I just get a blanc page. I tryed some of the solutions while crawling through the web and I tryed most of the suggested solutions. In other browsers it works fine. I disabled all my addons, I dont have add on blocker. My SWF is full screen browser so I adjusted the html with css accordingly. I uploaded it here: http://furyan.be/flash/swfobject/Main.html --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SWFObject" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/swfobject?hl=en -~----------~----~----~----~------~----~------~--~---
