Hey all,
A while ago, I asked for advice on how to publish my all-Flash site so that it
would resize itself to take up 100 percent of the screen, regardless of a
person's screen resolution. I was told to use the code, shown below, on my HTML
page. Well, the code worked (or so it seemed, as we tested the site on various
browsers and at various resolutions). But, the next day, the client checked the
site (using MSIE - although we'd used it the night before) and the site came up
the size of a postage stamp at 800 by 600 resolution, only. I have no idea why
this happened but, it's back to the drawing board.
I no longer care if the site resizes itself for 100 percent of the screen at
various resolutions. I've found that's just too much work and effort for too
little return (or so it seems - if someone can tell me different, please do).
What I'd like to do now is center my site (and I have no idea why this isn't
working since I have my publish settings set at "Flash Alignment = center,
center"). Please take a look at
www.songwritersguild.com to see that my page is
left justified. Can someone tell me the layout and/or publish settings I need
to use for center justification? I'm desperate as I have these snarky little
part-time employees at the Guild who are picking at every little thing they
think is wrong with the site. So thanks, in advance, for your help!!
Laurie Stevens
Laurie
<HEAD>
<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
<TITLE>index</TITLE>
</HEAD>
<BODY bgcolor="#000033">
<script language="JavaScript">
window.onload = maxWindow;
function maxWindow()
{
window.moveTo(0,0);
if (document.all)
{
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById)
{
if
(top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.ava
ilWidth)
{
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
}
</script>
</head>
<body>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca b#version=6,0,29,0" width="100%" height="100%">
<param name="movie" value="index.swf">
<param name=quality value=high>
<embed src="index.swf" quality=high
pluginspage="
http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_ Version=ShockwaveFlash" type="application/x-shockwave-flash" width="100%"
height="100%"></embed>
</object>
</body>
</html>