fabriciocs / swfobject

Automatically exported from code.google.com/p/swfobject
0 stars 0 forks source link

Firefox fails to show the swf #67

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The swf shows after the mouse interacts with the page or swf.

Firefox 2.0.0.12/ 2.0.0.13 on OSX

Our current solution is to change the setVisiblity function to use
display:block/none instead of visibility:visible/hidden

This fix does collapse the page which creates another issue.

Thoughts

Original issue reported on code.google.com by lim...@gmail.com on 8 Apr 2008 at 9:21

GoogleCodeExporter commented 9 years ago
It's a Firefox rendering issue, which has nothing to do with the library: all
elements and style rules are written correctly to the DOM.

First try to fix the issue by adding the following style rule in the head of 
your
HTML page:

<style type="text/css">
        object { display:block; }
</style> 

If this doesn't work, please use the resolution from issue:
http://code.google.com/p/swfobject/issues/detail?id=53

Original comment by bobbyvandersluis on 9 Apr 2008 at 8:18