Could someone please point me at a canonical example (that works
"everywhere") for embedding a Flex app so that it takes up all of the
browser window, with the exception of a header (and preferably a
footer as well). I would think this is a very common case.
I am embedding the app with 100% for width and height.
swfobject.embedSWF("myapp.swf", "flashcontent", "100%", "100%",
"9.0.0", "expressInstall.swf", flashvars,params,attributes);
It seems that the "flashcontent" DIV needs to be resized. I had some
success using the non-JavaScript approach described here:
http://www.alistapart.com/articles/conflictingabsolutepositions/
but it failed on Safari (worked for the alternate content if I didn't
embed the SWF, but the SWF was clipped if I did).
Thanks!