Tuesday, August 30, 2011

Flash SWF in Blogger

Today i will explain How to Insert and to embed Flash SWF File in Your Blogspot Post. There is a code you need to add in your post (HTML) to run it.



Using Flash in Blogger

So Our Code is like this:

<object width="256" height="256">
<param name="movie" value="Your SWF file Name Here">
<embed src="Your SWF File URL Here" width="256" height="256">
</embed>
</object>

Blogger HTML Post

Lets Say that

Your File Name is: Flash.swf and its uploaded on URL : www.uploadedfile.com\flash.swf

so the code should look like below now :


<object width="256" height="256">
<param name="movie" value="Flash.swf">
<embed src="www.uploadedfile.com\flash.swf" width="256" height="256">
</embed>
</object>

Done

Note: You can adjust the width and the height as you want to match your blog dimension

Related Topic: Download Embedded SWF Files Using Firefox

0 comments:

Post a Comment