Last week I needed to fill a whole page with some flash movie. Using 100% for the width is not a problem, but the height it is... In IE it's working fine by just using values like:
var so = new SWFObject("movie.swf", "mymovie", "100%", "100%", "8", "#FFFFFF");
But in Fireworks you see only a small part of your movie. The solution is to use some CSS style for the "html" element and also for the "flashcontent" container (this is generated by Javascript for the flash part):
html {
height: 100%;
overflow: auto;
}
#flashcontent {
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
}
Thanks to PixekBreaker for sharing this code.