|
Lets go over what the <EMBED> tag really
does. The tag is used in HTML documents to display flash animation. The
below <EMBED> tag code will work in, all the
browsers that have the flash plug-in installed. If the plug-in is not
installed then the code redirects the client to Macromedia's home page
to download the plug-in.
<embed src="yourmovie.swf"
width="1000" height="1232"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi
?P1_Prod_Version=ShockwaveFlash">
</embed>
Needed substitution: Wherever you see the blue highlights, you
must substitute your own values. The numerical substitutions, also, can
be in percentages. If you want the movie to be full screen in the browser
then set the Width and Height to 100%.
Placing procedure: First copy and paste the code, exactly where
you want the movie to appear in your HTML document.. Then make the substitutions
described above.
|