Maximum screen space

This is most likely an easy problem to fix…but I was just wondering how to make sure the flash site will extend to the full screen size of whomever’s screen it is being veiwed by. Sorry for the silly question but I am a new flasher and don’t know these things yet. (Am working my way nicely through the tutorials tho)

:cowboy:

~Seretha Blaze

Well fortunately I’ve found the answer!

But for anyone who reads this and would like to know how…
go into file>publish settings and click on the ‘html’ tab. Change the dimensions to percent and then make sure it is 100% and 100%. Once again sorry for the sad sad question.
:cowboy:

~Seretha Blaze

hi seretha-
it’s a javascript thing, put this code inside the head of your HTML doc and that is it…

<HTML>
<HEAD>
<meta http-equiv=Content-Type content="text/html;  charset=ISO-8859-1">
	<script language="JavaScript">
		window.moveTo(0,0);
		window.resizeTo(screen.availWidth,screen.availHeight);
		//*** Next Two Lines Are For Netscape ***//
		window.outerHeight=screen.availHeight;
		window.outerWidth=screen.availWidth;
		window.focus();
</script>

		</HEAD>

C:-) mojo