Embedding Flash Movies
Last update on: 07-16-2008The Flash author tool that you will use to create your flash video can produce the HTML to embed your movies within a page for you, but It is code to know how to create it manually as well. Here's a template for embedding a Flash movie.
<embed
src="player.swf"
width="300"
height="300"
allowscriptaccess="always"
allowfullscreen="true"
/>
Of these parameters, the most important one is the src. This contains the location of the SWF file to include, here player.swf. If the SWF file resides in another directory, we can point to it with a relative path
Integrating Multimedia's lessons:
Embed Sound And VideoEmbedding Flash Movies

