Hi,
My problem is simple, the solution though doesn't seem particularly obvious.
I have a Flash site. Currently the Flash object takes up the whole browser and is set to width/height = 100%
. This is fine until someone shrinks their browser.
Is there a way to set something like this this.
height = (browser_height < y) ? y : 100%;
width = (browser_width < x) ? x : 100%;
x and y being the minimum dimension the site needs to display properly.
Is there a CSS way to do this? If not could some tell me how to keep track of the browsers viewable area across all browsers?