How do I put a SWF file in a web page?
Page 1 of 1
How do I put a SWF file in a web page?
Hello, everyone. My name is dexterrocksthehouse, and I'm not new. I've been using this website for a year, but I haven't signed up until now.And I've been wondering,
How do I put a SWF file in a web page?
I recently made a game in Game Maker and converted it to SWF. I want my visitors to be able to play it. How would I put this on my website?
It would be very helpful if you could tell me.
Re: How do I put a SWF file in a web page?
Hello dexterrocksthehouser,Welcome as registered user :)
You can embed a SWF file in your HTML file like this:
<object width="300" height="300">
<param name="movie" value="flashmovie.swf">
<embed src="flashmovie.swf" width="300" height="300">
</embed>
</object>
- Andreas, HTML.net
--
Show some love for HTML.net on Twitter, Facebook and Google: Use the buttons on top of all pages.
Show some love for HTML.net on Twitter, Facebook and Google: Use the buttons on top of all pages.
Re: How do I put a SWF file in a web page?
HTML.net wrote:Hello dexterrocksthehouser,
Welcome as registered user :)
You can embed a SWF file in your HTML file like this:
<object width="300" height="300">
<param name="movie" value="flashmovie.swf">
<embed src="flashmovie.swf" width="300" height="300">
</embed>
</object>
- Andreas, HTML.net
Thank you so much! I've always wanted to do that! ;D
Page 1 of 1