Hi guys,
Here is the thing i made my site to be seen at 1440x900 pixels; my problem is when people have lower screen resolution I din’t want them to have a scroll bar so I put an code for the flash movie to resize whatever the browser is.
But here is my problem when people use higer screen resolution the images get bad.
Can anyone help in a way to detect the screen resolution and if its over 1440 the swf would stay in 100%?
here is the code I used…
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<style type="text/css">
<!--
body {
height: 100%;
width: 100%;
margin: 0;
}
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Creative Imaging</title>
</head>
<BODY background="#ebe9ed">
<!--url's used in the movie-->
<!--text used in the movie-->
<!-- 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%" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="main.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ebe9ed" /><embed src="main.swf" quality="high" bgcolor="#ebe9ed" width="100%" height="100%" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
<script type="text/javascript" src="fixit.js"></script>
</body>
</html>
Thanks…