I’ve made a full screen flash site according to the tutorial on:
http://www.kirupa.com/developer/mx2004/fullscreen.htm
The flash stage is about 800x 600 pixels. No scrollbars appear, which is normal.
But what I want to happen: if someone resizes the browser window to below 800 x 600 (or for people with lower monitor resolution even if they are rare), I would like to have the scrollbars reappear again.
Is that possible by adapting the html somehow?
This is the code I now have, made by completing the tutorial:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Cartoonist2008</title>
<style type="text/css">
<!--
body {
height: 100%;
width: 100%;
margin: 0;
}
-->
</style>
</head>
<body bgcolor="#ffdd00">
<!--url's used in the movie-->
<!--text used in the movie-->
<!--
<p align="left"></p>
<p align="left"></p>
<p align="left"></p>
<p align="left"></p>
<p align="left"></p>
<p align="left"></p>
-->
<!-- saved from url=(0013)about:internet -->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="100%" id="Cartoonist2008" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="Cartoonist2008.swf" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="bgcolor" value="#ffdd00" /><embed src="Cartoonist2008.swf" quality="high" scale="noscale" bgcolor="#ffdd00" width="100%" height="100%" name="Cartoonist2008" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>