I have problems to show a SWF FLASH file on my ASP.NET C# WEB project.
Im working on Visual Studio 2010.
I have tried using OBJECTS alone, but nothing happens (code below). Just an empty square.....Even not an error !!!!
Adding the <embed> clause, I have a warning message: "Element embed is not supported" !!!! and nothing happens, again.
------------------
<object type="application/x-shockwave-flash" data="/Imagens/MapaBrasilSelecao-2.swf"
width="90%" height="150">
<param name="movie" value="/Imagens/MapaBrasilSelecao-2.swf" />
<param name="quality" value="high" />
</object>
------------------
I also tried to add <classid> and <codebase> (code below), but nothing worked
well.
------------------
<td align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" data="/Imagens/MapaBrasilSelecao-2.swf"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
type="application/x-shockwave-flash" width="90%" height="150">
<param name="movie" value="/Imagens/MapaBrasilSelecao-2.swf" />
<param name="src" value="/Imagens/MapaBrasilSelecao-2.swf" />
<param name="quality" value="high" />
<embed src="~/Imagens/MapaBrasilSelecao-2.swf" type="application/x-shockwave-flash" width="90%" height="150"></embed>
</object>
</td>
------------------
Everybody said the same (code above), but it did not work ?
I think there must be some IE Security Configuration I dont know !?!?!?!?!?!
Can anybody help me ?
Thanks.
Guilherme