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
> 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
Samuel R. Neff - 28 Sep 2007 16:21 GMT
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.
>Hi Vinnie,
>
[quoted text clipped - 21 lines]
>>
>> Thanks
You could drop this free flash player control into that cell:
http://SteveOrr.net/articles/Flasher.aspx

Signature
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net
> 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