flash and drop down menus

Reply

Join Date: Dec 2004
Posts: 2
Reputation: baraklevy is an unknown quantity at this point 
Solved Threads: 0
baraklevy baraklevy is offline Offline
Newbie Poster

flash and drop down menus

 
0
  #1
Dec 7th, 2004
hi
this is the page i did:
http://www.kilolambda.com/updatesite/menusite.shtml

and this is anothe page i did where i called the menusite.shtml as an include inside a div z-index-2:
http://www.kilolambda.com/updatesite/index.shtml

i have 2 small flash files in this page and you can see that i can't see all the open menu - can you tell me why???

you can see sample that works fine at:
http://www.scitexvision.com/
Reply With Quote Quick reply to this message  
Join Date: Dec 2004
Posts: 2
Reputation: baraklevy is an unknown quantity at this point 
Solved Threads: 0
baraklevy baraklevy is offline Offline
Newbie Poster

Re: flash and drop down menus

 
0
  #2
Dec 7th, 2004
i solved the problem only for IE browsers by adding "wmode=transparent" to the flash objects

But what should i do for other browsers?
Reply With Quote Quick reply to this message  
Join Date: Jul 2005
Posts: 154
Reputation: katarey is an unknown quantity at this point 
Solved Threads: 20
katarey's Avatar
katarey katarey is offline Offline
Junior Poster

Re: flash and drop down menus

 
1
  #3
Aug 20th, 2005
To edit an existing HTML page, add the WMODE parameters to the HTML code.

1. Add the following parameter to the OBJECT tag:

<param name="wmode" value="transparent">

2. Add the following parameter to the EMBED tag:

wmode="transparent"


This Will Work With All Browsers

Rahul

http://www.katarey.com
Reply With Quote Quick reply to this message  
Join Date: Feb 2008
Posts: 1
Reputation: dhaval.patel is an unknown quantity at this point 
Solved Threads: 0
dhaval.patel dhaval.patel is offline Offline
Newbie Poster

Re: flash and drop down menus

 
0
  #4
Feb 25th, 2008
i think wmode is only for windows. here i have same problem. it has been resolved for browsers running on windows platform. but as i run the site on linux platform then wmode is not working. and the menu goes behind the flash. what do i do?
Reply With Quote Quick reply to this message  
Join Date: Jul 2005
Posts: 154
Reputation: katarey is an unknown quantity at this point 
Solved Threads: 20
katarey's Avatar
katarey katarey is offline Offline
Junior Poster

Re: flash and drop down menus

 
0
  #5
Feb 25th, 2008
Hi there,

I have created a page for reference, how to get rid
to this problem..

http://www.katarey.com/forHelp/flash...arencyProblem/

there is four drop down menus and four flash files embed by four different ways

I hope this will help you

Rahul Dev Katarey
Freelance Web Designer & Developer
Http//www.Katarey.com
Reply With Quote Quick reply to this message  
Join Date: Nov 2008
Posts: 1
Reputation: cheekymonkey is an unknown quantity at this point 
Solved Threads: 0
cheekymonkey cheekymonkey is offline Offline
Newbie Poster

Re: flash and drop down menus

 
0
  #6
Nov 20th, 2008
I spent a lot of time scouring the web for a solution to this 'javascript menu appearing behind flash' problem. The advice that Katarey and many on the web suggest did not work for me:

1. Add the following parameter to the OBJECT tag:
HTML and CSS Syntax (Toggle Plain Text)
  1. <param name="wmode" value="transparent">
2. Add the following parameter to the EMBED tag:
HTML and CSS Syntax (Toggle Plain Text)
  1. wmode="transparent"

Until I found this post:
http://www.likno.com/blog/my-submenu...-can-i-do/227/

The solution was to add ONE MORE (3 total) 'wmode' line to your AC_FL_RunContent script. This assumes that you're using the Adobe/Macromedia method of embedding your flash objects.

My code:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','700','height','600','title','title of my flashmovie','src','/swf/flashfilename','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','/swf/flashfilename','wmode','Transparent' ); //end AC code
</script>

<noscript>
          <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="700" height="600" title="title of my flashmovie">
            <param name="movie" value="/swf/flashfilename.swf">
            <param name="quality" value="high">
            <param name="wmode" value="transparent">
            <embed src="/swf/flashfilename.swf" wmode="transparent" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="700" height="600"></embed>
          </object>
          </noscript>


And between the <head> and </head> tags, don't forget to add:

HTML and CSS Syntax (Toggle Plain Text)
  1. <script src=”AC_RunActiveContent.js” language=”javascript”></script>

Flash will generate this file for you.. or you could download it from the Macromedia site.
Last edited by cheekymonkey; Nov 20th, 2008 at 11:32 pm. Reason: correct typo
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 45
Reputation: colweb is an unknown quantity at this point 
Solved Threads: 1
colweb colweb is offline Offline
Light Poster

Re: flash and drop down menus

 
0
  #7
Nov 21st, 2008
wmode = transparent only seems to work in MS Windows and sometimes in Linux browsers. (don't now about the Mac, can someone say something about flash on the Mac). But it depends on the rest of the code used.

I'm re-designing a web site and there will be a flash movie in it. Under Linux in Firefox 2 the menu will push the flash move out of the way, in Firefox 3 the menu goes behind the flash.

Have spend a lot of time on google to find a working solution, but found none.

In another forum some members there claimed that Adobe is to blame. The flash plugin for Linux browsers seems to contain a serious bug and can't be trusted to handle wmode correctly all the time (in fact, most off the time it will not work).

Still have to do some work on it. The flash move I'm using on this new site is a slide show with overlay, so it is not that hard for me to re-use some old javascript to get more or less the same result. The nice looking effect when images change in the flash movie isn't there, but at least the images will display and the menu will work.
In the final version (that is, as the site goes life), there will be a test for Linux and if so, the javascript comes to the rescue.
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 45
Reputation: colweb is an unknown quantity at this point 
Solved Threads: 1
colweb colweb is offline Offline
Light Poster

Re: flash and drop down menus

 
0
  #8
Dec 11th, 2008
Hello,

I have a test environment (you can find it here: http://80.61.28.192), where I use a flash movie if the OS is Windows or Mac and a javascript slide show if it is Unix, Linux or Unknown. The upload from this address is a little slow..

When using the flash under Linux the menu goes wrong. Either its hidden behind the flash or it pushes the flash out of the way (depends on the browser used).

Maybe you think "why not using the javascript for Windows and Mac also". Well, the final flash will have an overlay and some other things in it, and the javascript version only shows the images.

For the way I do it, please see the source code. The url's of the images are in a xml file and either the flash or the javascript reads these in. It's therefore possible to quickly change the images and have more or less images. The current ones are landscapes found with Google and are used here only for testing.

The test environment will stay online for a couple of days.

If you have a Mac please let me know how it shows on your machine. Linux and Windows is something I can test, but I have no Mac.

greatings,
Colweb
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the HTML and CSS Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC