Brendan,
> <cue organ music> I've faltered my brothers (and sisters) - I ran
> screaming back to my javascript skills - crying for a solution to my
> woes - help me be strong! I used some javascript to calculate the
> heights and widths and set some dimensions of the divs and flash.
Have you tried to set some dimensions to the container of the flash:
#viewer {
width: 100%;
height: 40%;
}
#viewer object {
width: 100%;
height: 100%;
}
You could also position the div absolutely:
body {
height: 100%;
}
#viewer {
position: absolute;
left: 200px;
right: 0px;
top: 500px;
bottom: 40px;
}
#viewer object {
width: 100%;
height: 100%;
}
Martin.
******************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************