How to embed Flash in HTML?

How to embed Flash in HTML?



- Select File-> Save As menu option to save movies.
- Save the file with .fla extension
- To embed flash movie in HTML:
Go to the flash program and perform the following;

1. Select File->Open. Select the flash movie.
2. Select File->Export Movie.
3. Name the saved file with .swf extension. Select the location to save the file.
4. Click on OK
5. Open the HTM file.
6. Insert the following code:
<object width="550" height="400">
<param name="movie" value="the flash file.swf">
<embed src="the flash file.swf" width="550" height="400">
</embed>
</object>
Post your comment