How to embed Flash into HTML
May 6th, 2009
1 comment
To embed Flash movie into HTML code, you must have a some Flash file in format .swf. (somefile.swf).
1. Copy this file somewhere to you web server.
2. Open the HTML page where you want to insert your Flash movie and insert this code:
<object width="550" height="400"> <param name="movie" value="somefilename.swf"> <embed src="somefilename.swf" width="550" height="400"> </embed> </object>
Note:
Where: width and hight is width and hight of movie in pixels. value and src is full path to movie.
Unique visitors to post: 1