How to add flash game on blog

You can create a flash game or find on web. After you have URL of flash, just put it on following html code below. You can find url of flash when you visit some pages with flash by:
On Internet Explorer: click View -> click Source (Firefox: click View -> click Page Source). Press Ctrl + F to find .swf. You will see like "imageflash/abc.swf". The full url of flash file is http://example.com/imageflash/abc.swf if you are visiting site http://example.com

<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='100%' height='100%'>
<param name='movie' value='URL of flash'>
<param name='quality' value='high'>
<param name='menu' value='true'>
<embed src='URL of flash' width='400' height='300' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' menu='false'>
</embed>
</object>

No comments: