I've created a report in ASP.NET and HTML which loads swf files into a for .
The problem is when the for is large and it needs to load several .swf files in the same report the flash simply does not run and gets marked with an exclamation (!) as you can see in the image below:
Hereisthecodeforhowtoloadtheswf:
<objectclassid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
id="painelv3" width="100%" height="100%"
codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
<param name="movie" value="meuArquivoFlash.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<param name="allowScriptAccess" value="sameDomain" />
<param name="FlashVars" value="<% =flashvar %>" />
<embed src="<% =sUrl %>" quality="high" bgcolor="#ffffff"
width="800" height="800" name="meuArquivoFlash" align="middle"
play="true"
loop="false"
quality="high"
allowScriptAccess="sameDomain"
type="application/x-shockwave-flash"
pluginspage="http://www.adobe.com/go/getflashplayer">
</embed>
</object>