How is this site constructed/designed so that the layout completely fills the screen no matter what resolution you are using? In particular it has no scroll bars showing as it resizes automatically.
/* hide from ie5 mac \*/
html {
height: 100%;
overflow: hidden;
}
#flashcontent {
height: 100%;
}
/* end hide */
body {
height: 100%;
margin: 0;
padding: 0;
background-color: #eee;
}
Setting the html tag to 100% height and then placing the Flash movie inside a div that is also set to 100% height does the trick.
0
Question has a verified solution.
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" src="js/swfobject.js"></sc
<script language="JavaScript" src="js/swfforcesize.js"><
<script language="JavaScript" src="js/opencentered.js"><
<script language="JavaScript" src="js/screensize.js"></s
<style>
I think the resize automatically function reside in the screensize.js and opencentered.js file. Below is the script for the both files:
Open in new window