Flash in aspx

  • Thread starter Thread starter Vinnie
  • Start date Start date
V

Vinnie

let's say that i have a table on my masterpage, a 4x4. Now, in one of
those cells, i one insert a movieclip that i did with Flash? can i do
that? how?

Thanks
 
Hi Vinnie,

You do this the same way as in HTML. What's a problem with ASP.NET?

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
width="100" height="100">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<param name="src" value="myclip.swf" />
<param name="scale" value="noborder">
<param name="bgcolor" value="#FFFFFF">
<embed src="myclip.swf" quality="high"
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"
type="application/x-shockwave-flash" width="100" height="100"
wmode="transparent" scale="noborder"></embed>
</object>

TarTar
 
It's not advisable to put an object tag directly inside HTML any more
due to eolas patent issues and Microsoft's "click to activate"
resolution. Instead the content should be instantiated through an
external javascript function.

http://www.adobe.com/devnet/activecontent/

Sam

------------------------------------------------------------
We're hiring! B-Line Medical is seeking .NET
Developers for exciting positions in medical product
development in MD/DC. Work with a variety of technologies
in a relaxed team environment. See ads on Dice.com.
 
Back
Top