How do you import a flash game in a HTML document
How do you import a flash game in a HTML document
You will need to embed the SWF file in your HTML using the following code:
<object width="
width" height="
height">
<param name="movie" value="
file.swf">
<embed src="
file.swf" width="
width" height="
height">
</embed>
</object>