For the research I did it seems tt to add flash header in Drupal, u can modify the page.tpl.php of the theme u r using.
I also referred and tried the codes in http://drupal.org/node/23786#comment-187268,
but it does work for me :(

Fyi, i am using forest_floor theme, and the swf i wanted to use as header is header.swf.
The comment said i hv to put the swf file in the root folder, so i put it in drupal-6.8 folder.
I am also unsure of how to find out the width n height of the swf file... Can someone tell me how?

Can someone provide me a working and updated code (tt comment was post on January 9, 2007 --> very long ago...) with simple and easy to follow instructions?

Urgently needed... Would really appreciate if someone can help... Thanks.

Comments

neeey’s picture

modify the width n height accordingly
" style="margin-top:21px" " is used to move down the flash a bit, u can edit/remove this field too

<div id="header">

	<center>
			  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="882" height="297" style="margin-top:21px" title="Header">
			      <param name="movie" value="header.swf" />
			      <param name="quality" value="high" />
			      <embed src="header.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="882" height="297" style="margin-top:21px" ></embed>
			  </object>
	</center>

...
...
...
(other codes)
...
...
...

</div> <!--/#header -->