I gave up on the iframe and was toying around w/ a page that has php and my
flex app. This brought up another question as I'm trying to just understand
what's going on w/ the javascript/flash interaction. Here's the php code:
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="left">
<tr>
<th width="24%" scope="col"><img src="logo.png" alt="logo" width="295"
height="93" align="left"></th>
<th width="24%" scope="col"><?php include("adsense.php"); ?></th>
</tr>
<tr>
<th width="100%" height="50%" scope="col"><?php include("home.html");
?></th>
</tr>
</table>
Basically, what I am doing here is I want my logo.png on the top left of the
page, then the adsense.php to the right of the logo. Underneath all that is my
flash.
My question is that doing it this way the logo.png file draws itself over the
flash, but the adsense code doesn't. The resulting page looks like a flash file
that has the logo.png file integrated but the adsense code gets pushed to the
side of the page. Why does flash treat a .png file differently from java?