This Message Forum is no longer in use

Please use the new Bravenet Help Forums FOUND HERE

General Forum
This Forum is Locked
Author
Comment
Adding swf file to site...

Can anybody give me the step by step on how to add an swf flash banner to my web site.

Thank you...

Re: Adding swf file to site...

To insert flash into your HTML files you need use the HTML tag with a embedded tag. The code is pretty much cookie cutter. All you need to do is insert your own SWF file name and adjust the width and heights. The following code assumes that your flash file is named "my_flash.swf" and that it is in the same directory as your HTML file. Note that the file name and size is specified in the and in the tags. The "id" and "name also match between the two but shouldn't cause problems unless your dynamically addressing the flash object from Javascript.

codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
width="468" height="60" id="mymoviename">



width="468" height="60"
name="mymoviename" align="" type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer">



The code looks kind of messy, but works just fine on free or paid web sites. The exact details of each parameter can be obtained from almost any good tutorial on the internet.

Re: Adding swf file to site...

Thanks for sharing it is really very useful..

Re: Adding swf file to site...

Thanks that is helpful...

Re: Adding swf file to site...

can you please tell me how to make the flash file not to load automatically after the page opens?