Jump to content

flash banner problem


Guest

Recommended Posts

Hi All

I need to place a flash banner on my homepage under the navigation bar, but when i tried this the pop up menu which is in javascript was hidden underneith the flash banner. Does anyone know how i can cure this? mu site url is http:///www.enigmabikes.com and i want to replace the image of the 2 guys on bikes with the banner.

Any help will be appreciated.

Kind Regards

Joe

Link to comment
Share on other sites

depending on how you have embedded your flash you will need a wmode param

wmode opaque

if you are embedding via the swfobject.js method (reccomended) you would need to add

so.addParam("wmode", "opaque");
 to the swfobject data

if you are embedding with the AC_FL_COntent js way (like from Dreamweaver)

you need a 


<param name="wmode" value="opaque" />

using wmode opaque forces the flash object to the same z index of the browser

where as not defining it the flash object isnt actually in the browser so other stuff pop or slide under it

If you need further help please PM me for more information

Kinetic

Link to comment
Share on other sites

depending on how you have embedded your flash you will need a wmode param

wmode opaque

if you are embedding via the swfobject.js method (reccomended) you would need to add

so.addParam("wmode", "opaque");
 to the swfobject data

if you are embedding with the AC_FL_COntent js way (like from Dreamweaver)

you need a 


<param name="wmode" value="opaque" />


using wmode opaque forces the flash object to the same z index of the browser

where as not defining it the flash object isnt actually in the browser so other stuff pop or slide under it



If you need further help please PM me for more information



Kinetic
Hi Kinetic, First of all thanks for your help i really appreciate it. Sadly i did try

but it didnt seem to work, it changes the code after i add it for some reason.

Thanks

Joe

<param name="wmode" value="opaque" />
Link to comment
Share on other sites

ok

1) where and how are you adding the flash embed code?

2) Paste me your embed code

Kinetic

this is what ive been typing into the homepage doc in my admin panel

<table cellspacing="0" cellpadding="0" width="887" border="0">

<!--DWLayoutTable-->

<tbody>

<tr>

<td valign="top" colspan="3" height="349"> <object width="887" height="349">

<param name="wmode" value="opaque" />

<embed src="Movie.swf" width="887" height="349">

</embed>

</object> </td>

</tr>

<tr>

<td valign="top" height="171"><a href="http://www.enigmabikes.com/index.php?_a=viewCat&amp;catId=14"><img height="171" alt="" width="291" border="0" src="/images/uploads/images/wintersale(1).jpg" /></a> </td>

<td id="tabs" valign="top" width="305"><a href="http://www.enigmabikes.com/index.php?_a=viewProd&amp;productId=19"><img height="171" alt="" width="293" border="0" src="/images/uploads/images/elletab.jpg" /> </a></td>

<td valign="top" width="292">

<div align="right"><a href="http://www.enigmabikes.com/index.php?_a=viewCat&amp;catId=3"><img height="171" alt="" width="291" border="0" src="/images/uploads/images/partex(1).jpg" /></a> </div>

</td>

</tr>

<tr>

<td valign="top" width="263" height="171"><a href="http://www.enigmabikes.com/index.php?_a=viewProd&amp;productId=21"><img height="171" alt="" width="291" border="0" src="/images/uploads/images/ethostab.jpg" /></a></td>

<td id="tabs" valign="top" width="305"><a href="http://www.enigmabikes.com/index.php?_a=viewProd&amp;productId=44"><img height="171" alt="" width="293" border="0" src="/images/uploads/images/ceramictab(1).jpg" /></a></td>

<td valign="top" width="292">

<div align="right"><a href="http://www.enigmabikes.com/index.php?_a=viewDoc&amp;docId=24"><img height="171" alt="" width="291" border="0" src="/images/uploads/images/cycle2008tab.jpg" /></a></div>

</td>

</tr>

</tbody>

</table>

and when i click source the flash code then changes to this

<td valign="top" colspan="3" height="349"><embed src="Movie.swf" width="887" height="349" type="text/html; charset=iso-8859-1" scale="ShowAll" loop="loop" menu="menu" wmode="Window" quality="1"></embed> </td>

Link to comment
Share on other sites

Your code is bogus to start with you have the param outside of where it needs to be and it should also be repeated within the embed as well

the object tags are for IE browsers the embed is for firefox

when you view source it would of course "change" depending on the BROWSER you are using

you can use this code remembering to use the full URL to your swf file (where ever it is located on your site there 2 places you NEED to edit this....)

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="887" height="349" hspace="0" vspace="0" title="Movie">

  <param name="movie" value="http://www.yoursite.com/Movie.swf" />

  <param name="quality" value="high" />

  <param name="wmode" value="opaque" />

  <embed src="http://www.yoursite.com/Movie.swf" width="887" height="349" hspace="0" vspace="0" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" wmode="opaque"></embed>

</object>

this is the old method of embedding flash you realy need to step up to the swfobject.js method (gets rid of the grey rectangle around the flash object in IE

If you would like me to do this for you please PM me for my rates

Kinetic

Link to comment
Share on other sites

Your code is bogus to start with you have the param outside of where it needs to be and it should also be repeated within the embed as well

the object tags are for IE browsers the embed is for firefox

when you view source it would of course "change" depending on the BROWSER you are using

you can use this code remembering to use the full URL to your swf file (where ever it is located on your site there 2 places you NEED to edit this....)

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="887" height="349" hspace="0" vspace="0" title="Movie">

  <param name="movie" value="http://www.yoursite.com/Movie.swf" />

  <param name="quality" value="high" />

  <param name="wmode" value="opaque" />

  <embed src="http://www.yoursite.com/Movie.swf" width="887" height="349" hspace="0" vspace="0" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" wmode="opaque"></embed>

</object>

this is the old method of embedding flash you realy need to step up to the swfobject.js method (gets rid of the grey rectangle around the flash object in IE

If you would like me to do this for you please PM me for my rates

Kinetic

Thanks Kinetic, it works in ie now but not mozilla, how can i get it to work in that?

Thanks

Joe

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...