-
What's use of embed
Hi,
I gave below coding.One doubt in the coding.I give related file name of .wf in param value.I give another .swf file in the embed.But the param movie file name output is displayed.Embed src =".swf " file doesn't displayed.
can u give any suggestion?Thats the embed is necessary or not?
<param name="movie" value="animated_img.swf" />
<embed src="segment1.swf" flashvars="init=yes&check=true" quality="high" bgcolor="#FFFFFF" width="400" height="300" name ="myMovieName" type ="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer">
Thanks:)
-
Re: What's use of embed
Take a look at this sample code of how to embed a shockwave/flash movie in your HTML:
HTML Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,42,0" id="isra" width="687" height="394">
<param name="movie" value="isra.swf" />
<param name="bgcolor" value="#DFE1E1" />
<param name="quality" value="high" />
<param name="allowscriptaccess" value="samedomain" />
<embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="687" height="394" name="isra" src="isra.swf" bgcolor="#DFE1E1" quality="high" swliveconnect="true" allowscriptaccess="samedomain" />
</object>
-
Re: What's use of embed
Didn't I answer this in another thread?
Why yes, I did answer it in another thread.