2
I created a report on ASP.NET and HTML uploading files .swf (flash) within a for.
The problem is when the for is big and it needs to load multiple files. swf in the same report the flash simply doesn’t run and gets an exclamation mark (!) as you can see in the image below:
Follow the code of how the loading of the .swf:
<object classid="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>
Buddy, I read about it in that link you sent. I will give an upvote, but I will leave the question open to see if anyone has any solution that can minimize my problem.
– Arthur Menezes