| | |
flash and drop down menus
Please support our HTML and CSS advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Dec 2004
Posts: 2
Reputation:
Solved Threads: 0
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/
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/
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
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
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
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
•
•
Join Date: Nov 2008
Posts: 1
Reputation:
Solved Threads: 0
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:
2. Add the following parameter to the EMBED tag:
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:
And between the <head> and </head> tags, don't forget to add:
Flash will generate this file for you.. or you could download it from the Macromedia site.
1. Add the following parameter to the OBJECT tag:
HTML and CSS Syntax (Toggle Plain Text)
<param name="wmode" value="transparent">
HTML and CSS Syntax (Toggle Plain Text)
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)
<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
•
•
Join Date: Nov 2007
Posts: 45
Reputation:
Solved Threads: 1
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.
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.
•
•
Join Date: Nov 2007
Posts: 45
Reputation:
Solved Threads: 1
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
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
![]() |
Similar Threads
- Do drop down menus hurt SEO? (Search Engine Optimization)
- Search engine friendly drop down menus (Site Layout and Usability)
- News Story: Drop down menus in Flash (Upcoming News Stories)
- Drop-down menus not appearing (Windows NT / 2000 / XP)
- IE 6 missing File, etc. Drop Down Menus (Windows NT / 2000 / XP)
Other Threads in the HTML and CSS Forum
- Previous Thread: How to make a broken image box?
- Next Thread: Fluid Width Layout Problem
| Thread Tools | Search this Thread |
appointments asp background backgroundcolor beta browser bug calendar cart cgi code codeinjection corporateidentity css design development displayimageinsteadofflash dreamweaver emailmarketing epilepsy explorer firefox flash form format google griefers hackers hitcounter hover html ide ie7 ie8 iframe image images internet internetexplorer intranet iphone javascript jpeg layout macbook maps marketshare microsoft mozilla multimedia navigationbars news offshoreoutsourcingcompany opacity opera optimization pnginie6 positioning problem scroll seo shopping studio swf swf. textcolor timecolor titletags url urlseparatedwords visual visualization web webdevelopment webform website windows7





