i have a transparent flash animation (*.swf file). i want to play that animation
when starting my application. i used shock wave object, now its working. but the problem is,
it has a white background. how can i make it transparent? or is there any other way to insert
transparent flash filr into C#.net form application?
Loading
thanh doPosted Dec 3, 2010, 4:52 AM
Niradhip ChakrabortyPosted Apr 10, 2009, 2:00 PM
Eranda NIroshanPosted Apr 8, 2009, 12:02 PM
i think this is how to insert transparent flash file into the asp.net file....
i want to insert transparent flash file into the splash window of my form application.
do you know how to do that?
Niradhip ChakrabortyPosted Apr 8, 2009, 1:15 AM
You need to pass value as transparent both inside
Check out the bold line below
<OBJECT id="Shockwaveflash1" codeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
height="257" width="464" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" VIEWASTEXT>
<PARAM NAME="_cx" VALUE="10954">
<PARAM NAME="_cy" VALUE="6059">
<PARAM NAME="FlashVars" VALUE="">
<PARAM NAME="Movie" VALUE="images/sam02_final.swf">
<PARAM NAME="Src" VALUE="images/sam02_final.swf">
<PARAM NAME="WMode" VALUE="Transparent">
<PARAM NAME="Play" VALUE="0">
<PARAM NAME="Loop " VALUE="-1">
<PARAM NAME="Quality" VALUE="High">
<PARAM NAME="SAlign" VALUE="">
<PARAM NAME="Menu" VALUE="-1">
<PARAM NAME="Base" VALUE="">
<PARAM NAME="AllowScriptAccess" VALUE="">
<PARAM NAME="Scale" VALUE="ShowAll">
<PARAM NAME="DeviceFont" VALUE="0">
<PARAM NAME="EmbedMovie" VALUE="0">
<PARAM NAME="BGColor" VALUE="">
<PARAM NAME="SWRemote" VALUE="">
<PARAM NAME="MovieData" VALUE="">
<PARAM NAME="SeamlessTabbing" VALUE="1">
<PARAM NAME="Profile" VALUE="0">
<PARAM NAME="ProfileAddress" VALUE="">
<PARAM NAME="ProfilePort" VALUE="0">
<PARAM NAME="AllowNetworking" VALUE="all">
<PARAM NAME="AllowFullScreen" VALUE="false">
<embed src="images/sam02_final.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" width="464" height="257" wmode="transparent">embed>
OBJECT>