I embedded a 100% height 100% width Flash movie using SWFOjbect a while ago. It's been working perfectly in all the main browsers - it covers the whole of the available window. But now Firefox 3's come out, the SWF only appears in a 200 pixel high strip at the top of the page. The 100% width seems to be OK. Is this some kind of Firefox 3 bug?
I suggest you post on the swfobject 2.0 Google group ( there are sticky posts at the top of the forum), as 1.x is not under active dev / support any more.
Gareth, try the following. The below gives me 100% width and height and also min/max height/width across a good range of browsers. Not totally perfected yet but it's close and did solve the issue you had. Basically adding any character into the TD magically fixed the issue of the flash collapsing to the 200px. I wrapped this character fix in #fixme and display:none for all browser except Firefox3 and then gave it a font size of 0. Again, still playing with this but thought I would post some help to see if others can add to this.
--------------CSS--------------
<style type="text/css"> /* hide from ie on mac \*/ html {height: 100%;} #flashcontent {min-width:1050px;min-height:768px;overflow: auto;height:100%;width:100%; _height:expression(document.body.clientHeight < 770? "768px" : document.body.clientHeight > 770? "100%" : "100%");/* sets min IE6 height */ _width:expression(document.body.clientWidth < 1050? "1045px" : document.body.clientWidth > 1050? "100%" : "100%");/* sets min IE6 width */ } /* end hide */ body {height:100%;margin:0;padding:0;background-color:#CCC;font-family:Arial,Helvetica,sans-serif;font-size:1.1em; } table {height:100%;width:100%;text-align:center;} #fixme, x:-moz-any-link, x:default {display:block; font-size:0;}/* firefox3 hack to force table height 100% */ #fixme {display:none;} </style>