Hi, I developed something in flex. It works great on FF and Safari. But on IE the "swf area" remains blank until mouse moves over it. I am embedding it like that:
<object height="100%" width="100%" id="myApp">
<param value="example.swf" name="movie"/>
<param value="high" name="quality"/>
<param value="opaque" name="wmode"/>
<param value="always" name="allowScriptAccess"/>
<param value="true" name="allowFullScreen"/>
<embed height="100%" width="100%" wmode="opaque" allowfullscreen="true" allowscriptaccess="always" name="myApp" type="application/x-shockwave-flash" quality="high" src="example.swf"/>
</object>
What can I do? I dont want to use javascript for it, because I need to easily copy/paste my "embedding code" on other webpages. Any suggestion?