Showing posts with label Flash. Show all posts

How to Add a Flash Background to Blogger


Flash files (SWF) animations are those that are created using special program, And there are also programs that convert videos into flash format.
However, First you need a flash file (the bigger the better) uploaded to your hosting. Than put it in the code we below.

Add it to Blogger

This swf background can be added by putting this code below <body> .

<object height='100%' id='fondoflash' width='100%'>
<param name='movie' value='URL of SWF'/>
<param name='scale' value='exactFit'/>
<param name='wmode' value='transparent'/>
<embed height='100%' scale='exactFit' src='URL of SWF' type='application/x-shockwave-flash' width='100%' wmode='transparent'/>
</object>
<style>
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
padding: 0;
}
#fondoflash {
height: 100%;
z-index:-9999;
position:fixed;
margin: 0 auto;
}
</style>

And 
DoNe.