Drop-down the menu issues.

Hello;
I wrote a cf / css dynamic menu. I have 1 question with it. I have a flash movie on the page, and when you hover over the menu drop / nav, the menu goes behind the flash animation and makes the other links in the nav unusable. Is there a script for a code that will make the NAV go over the animation and not behind it?

Thank you.
CFmonger

Just make sure you have "transparent" wmode attribute to your
Flash animation.

Azadi Saryev
SABAI - Dee.com
http://www.SABAI-Dee.com/

Tags: ColdFusion

Similar Questions

  • You guys how drop-down the menu thing? helpp

    Tables:
    /------------------/
    /adinstance /.
    /----------------/

    /--------------------------/-----------------------------------/    /----------------------------/---------------------------/
    / DROP DOWN / Power Rating / / # 110 circuits / number of 208 circuits .
    / (110 or 208)     / (input any #, eg 500)    /      /-----------------------------/-------------------------/

    /----------------------/-----------------------------------/      /        x                   /              y         /
    /----------------------------/-------------------------/

    I had the function of calculation to determine the number of circuits 110 and 208 and it's OK:

    Math.ceil ((Table2.Row2.Cell(1_or_2).rawValue / 110 or 208) / 20 (110) or 30 (for 208))

    Its becomes quite difficult for me because of the thing drop-down list box since in the first instance, suppose you get (3) 110 circuits, when you add another instance and it gives you another 2 circuits, these two results would add up and have 5 110 of circuits, the same with the 208 circuits and so on...

    I need guidance please! I've included a test file with the just in case basic layout. Thank you!

    Hi Cassandra,.

    In the drop-down list you "specified values' in the object/link tab. For example, when the user sees and selects "120"; Acrobat see also "120" linked data.

    It is a very powerful appearance lists drop-down, because you can set the drop-down "120 Volt" menu item and then continue to the value specified for '120 '. The user sees 120 volts, but behind the scenes the .rawValue is 120.

    That's why in the script, I can access the .rawValue, which is "120".

    If you copy this back into a real shape, then make sure the drop down menu has also specified values in the binding tab.

    Hope that helps,

    N.

  • Dreamweaver CS5 crashes when you use the drop-down file menu

    Hi all

    I used Dreamweaver CS5 all day learning CSS. Everything works well with the multiple screens open and div tags work properly.

    However, after I turned off my computer, something seems broken. When I start up, I open Dreamweaver and then open a Web page. But if I click on the drop-down the menu 'file' in the top menu, Dreamweaver crashes.

    It does not give an error code, if I use a shortcut to move through the menu, then it will crash again. I can use the other tabs as 'Edit' and 'View', but after a few minutes, Dreamweaver crashes on its own.

    I'm kinda stuck here. I use Adobe CS5 Creative Suite Student and Teacher Edition on a Medion laptop.

    At soon Ollie.

    I used Dreamweaver CS5 all day learning CSS. Everything works well with the multiple screens open and div tags work properly.

    However, after I turned off my computer, something seems broken. When I start up, I open Dreamweaver and then open a Web page. But if I click on the drop-down the menu 'file' in the top menu, Dreamweaver crashes.

    It does not give an error code, if I use a shortcut to move through the menu, then it will crash again. I can use the other tabs as 'Edit' and 'View', but after a few minutes, Dreamweaver crashes on its own.

    Looks like you may have a corrupted menu cache.

    Take a look at this TechNote #12 step to determine where the User Configuration folder for your operating system:

    http://kb2.Adobe.com/CPS/405/kb405604.html#main_user_config

    With the discontinuation of DW and then try to delete the Configuration/Menus/Cache folder, then restarting.

    Hope this helps,

    Randy

  • I turned on my PC today and I did not "PRINT" option when I go to the drop down "FILE" menu... totally gone... Could someone please advise me how to recover?

    I turned on my PC today and I did not "PRINT" option when I go to the drop down "FILE" menu... totally gone... Could someone please advise me how to recover?

    Thank you for your comments... I guess it is the restoration of the system for me!

  • Bookmarks drop down the list too wide Firefox Mac OSX Lion 31

    When I click on the drop down bookmarks menu, it's too wide. If there is a folder in the contents list shown far right. At the point where I'm moving the mouse on there where the contents of the folder is it disappears. Am on Mac OSX Lion. I tried to scroll on the corners and sides of the drop down list to search again for the sizing handles, but none are. It is not just Firefox 31 version as has happened for some time. Any ideas please?

    Which may be caused by the presence of a few bookmarks with a long title in the main menu of bookmarks.
    The width of a column in the list of bookmarks is in the current versions of Firefox automatically adjusted the bookmark with the longest name.
    You can check the names of the bookmarks and the longer more short.

  • The drop-down the counting button... NO CellRenderer...

    I finally had time to count my QNX components, and as I suspected the drop down (that I have left to the last) is the only component to give me problems when it comes to counting.

    Has anyone successfully scraped the Drop Down button with the arrow?

    I came close, but I get this weird behavior where, when I click on the button while the menu is developed, I can see drop down the default button.

    Here are a few screens:

    Don't not clicking the button of dd:

    By clicking on the button of dd:

    Here is my code:

    brushDropDown=new CustomDropDown();
    brushDropDown.setListSkin(CustomDropDownCellRenderer);
    brushDropDown.setButtonSkin(CustomDropDownButtonSkin);
    brushDropDown.setBackgroundSkin(DropDownBackgroundSkinBlack);   brushDropDown.setBackgroundSkin(DropDownBackgroundBarSkinBlack);
    
    public class CustomDropDownButtonSkin extends DropDownButtonSkinWhite
        {
    
            /**@private**/
            protected var upSkin1:Sprite;
            /**@private**/
            protected var selectedSkin1:Sprite;
            /**@private**/
            protected var disabledSkin1:Sprite;
            /**@private**/
            protected var downSkin1:Sprite;
    
            public function CustomDropDownButtonSkin()
            {
                super();
            }
    
            override protected function init():void{
    
                super.init();
    
                upSkin1=new Sprite();
                upSkin1.graphics.beginFill(Colour.YELLOW);
                upSkin1.graphics.drawRect(0, 0, 170, 50);
                upSkin1.graphics.endFill();
    
                downSkin1=new Sprite();
                downSkin1.graphics.beginFill(0x333333);
                downSkin1.graphics.drawRect(0, 0, 170, 50);
                downSkin1.graphics.endFill();
    
                disabledSkin1=new Sprite();
                disabledSkin1.graphics.beginFill(0xCC0000);
                disabledSkin1.graphics.drawRect(0, 0, 170, 50);
                disabledSkin1.graphics.endFill();
    
                selectedSkin1=new Sprite();
                selectedSkin1.graphics.beginFill(Colour.ORANGE);
                selectedSkin1.graphics.drawRect(0, 0, 170, 50);
                selectedSkin1.graphics.endFill();
    
                setSkinState(SkinStates.UP, upSkin1);
                setSkinState(SkinStates.SELECTED, selectedSkin1);
                setSkinState(SkinStates.DISABLED, disabledSkin1);
                setSkinState(SkinStates.DOWN, downSkin1);
                showSkin(upSkin1);
            }
        }
    

    I noticed that DropDownButtonSkinWhite (extending my CustomButtonSkin) has already selected skin assigned to it that I can't replace... I can do false visible, who hide assets by default... but that does not help me...

    Does anyone found a workaround for this? Thanks in advance...

    Hey,.

    the count is rough - we will essentially blind lol. Here are the States in the drop down menu you need to cover including the ones you already have:

    setSkinState(SkinStates.UP, upSkin1);
    setSkinState(SkinStates.DOWN, downSkin1);
    setSkinState(SkinStates.SELECTED, selectedSkin1);
    setSkinState(SkinStates.DOWN_SELECTED, selectedSkin1);
    setSkinState(SkinStates.DISABLED, disabledSkin1);
    

    Good luck!

  • Dynamic effects of HTML like Drop Down the legend and the body does not

    I use TC 2.0, soon to be upgrading to TSC 3.0.  When I try to create Drop Down Caption and Drop Down body elements in FrameMaker and Robohelp update, it does not work.

    I have the text as:

    Drop down menu test legend

    Which I note and go to the Adobe RoboHelp-> DHTML Effects-> menu Drop Down Caption and apply the style of paragraph DropDownCaption to.  I then text like:

    Test menu drop-down body

    Which I pointed out and go to the Adobe RoboHelp-> DHTML Effects-> menu Drop Down body and apply the style of paragraph DropDownBody to.

    I update my Robohelp project (related to my project of FrameMaker) and get a 'clickable' of Test Drop Down legend which I click and Interline additional just pop-up. My Test drop down of the body  text is still there, doing nothing.

    You mind, I can do this in RoboHelp directly without any problems, but then I have the problem of update of the project of FrameMaker and that it get rid of all my work of RoboHelp project. Is it possible to get this working in FrameMaker?

    Please check if there is an empty paragraph between paragraph style Drop Down the legend and the paragraph with the style of Drop Down Body in the FrameMaker document. For RoboHelp, to recognize the link between the two, Drop Down body paragraph must immediately follow the Drop Down Caption paragraph. Avoid any empty paragraph between the two.

    MILIN

  • Lightroom drop on the menu "change in" to work on Photoshop is gray out?

    Lightroom drop on the menu "change in" to work on Photoshop is gray, even if I have my "preconfigured with this catalogue shop" unchecked. What do I need to reinstall LR?

    Develop module says I work with thumbnails, this is my photo write-in?

  • Drop-down list menu pasted on the screen - Windows 7

    Hello

    Few other coworkers recently experienced an annoying glitch in Windows 7: having access to drop down / context menus and when they chose something (say: do right click on desktop--> customize, for example) and select 'Customize' "stuck" to the screen in the exact same place it has been clicked. Now, out of nowhere, my PC (Windows 7) started having the same problem. All of our PC, some to work and my own at home, are machines performing with more than enough RAM (16 GB, Intel Core i7-2600 processor 3.40 GHz) and good GPU (mine is Geforce GTX 580 1536 MB of memory GDDR5, others may be a little older but still good for today, for game purposes).

    After searching for information for a bit, I realized that it is a problem more common that I first thought, some forum discussions go until 2008 (Windows XP SP2 and SP3). Now, I also found a few solutions more or less work, a more or less temporary nature. It comes to change the resolution of the screen and then return to the original, flipping the screen upside down and some a bit more advanced:
    "Start - run -"tskill dwm"or kill DWM. EXE from the Task Manager, it restarts instantly with gone menu items. "(as written on a forum thread)

    Now, some people find help in one or two of these solutions, some are may not be not as lucky. For me, thread of TheDr1ver.comgave the 'response '. You go to computer (right click)--> Properties--> Advanced--> settings system settings... (running)--> uncheck "Fade out menu after clicking items on"--> OK. What this does, I think, is to reduce the "eye-candy" on the transitions of the elements on the screen or something like that. He helped my case but we're also the right click menus drop-down weird in a way that if I come up with the right button and does not move the pointer of the mouse, the menu appears as a transparent and only after I move the mouse pointer, it will become fully visible. At the moment I'm OK with that. This is better than having a drop of 'Properties' to the bottom of the element stuck on my screen.

    However, what intrigues me is that this problem has persisted for many years. And there was a lot of discussion on this topic. My question is: why Microsoft did not something to solve this problem? I can't live without the eye-candy on my OS I appreciate performance over Visual tricks, but I don't have to change the settings for a lesser visually 'version' when my PC has the muscle to run it with all the eye-candy. As much as it came out of the Blue: the only thing I changed in my PC in recent weeks has been the new drivers for Geforce. And even after installing new drivers weren't graphics bugs in Windows. This glitch "menu drop-down stuck" happened without warning of any kind. The same thing happened to my co-workers. One day, you start your computer and what is happening.

    I'm going to say here that answers such as "turn off Aero", 'disable all Visual effects' do not apply because they weren't a problem a few days that they were not a question every day since I bought this computer. We (and I mean many people with this parasite, annoying their death) need a good answer, a patch, something that will deal with the issue once and for all.

    My rig:
    Processor Intel Core i7-2600 3.40 GHz (8 CPUs), ~3.4GHz
    16 GB of RAM
    NVIDIA GeForce GTX 580, (1536 MB) GDDR5
    Windows 7 Ultimate 64-bit (6.1, Build 7601)

    PS Sorry if my post sounds hard towards the end, but this problem has been so persistent over the years to an official solution that does not require the Central PCs disable Visual features of the OS just to operate normally. Especially since the problem occurs randomly.

    I was having the same problem recently and wonder if it's something with the GeForce drivers.

    Someone having this problem (not nvidia) have another video card?

    I just tried reinstalling my drivers to see if that fixes anything.

    Edit: reinstalling the driver solves the problem.

    The fix that worked for me:

    Control Panel, system, advanced system settings.

    Advanced tab, click settings in terms of Performance.

    Uncheck the disappearing menu items after clicking on.

    Restart the Desktop Window Manager Session Manager service updates the desktop computer to remove all existing ghosts too.

  • One of my javascript interfere with other javascript in the drop-down nav menu

    I use javascript for a slideshow and scroll to images in my home page. The thread is that I realized that now, there is another javascript in the page that I don't remember call myself and it seems that connects both slideshows and also interferes with the drop down menu script menu, which now does not work.

    I used Magento, so that the header is not part of the same page. I don't know if is a Magento or something to Dreamweaver, that this new javascript was placed in the home page.

    Here's the url: http://www.southsunbeads.com

    " These two javascripts go with the main top page show: src = ' http://www.southsunbeads.com/website/slideshow/jQuery-1.2.6.Pack.js ">

    <script type="text/javascript" src="http://www.southsunbeads.com/website/slideshow/simplegallery.js">
    
    This one is part of the scroll image at the bottom: <script type="text/javascript" src="http://www.southsunbeads.com/website/carousel/stepcarousel.js">

    But then I have this one, that is causing all the problems and is apparently plug everything together, when I tried to remove it, slide shows stop working.

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    
    I don't know javascript, so I have no idea how to fix this problem. Basically what I need is that the menu on the top doesn't get affected by these other javascripts.
    
    

    Can anyone help?

    Thank you

    Happy to be useful even in such a non-Dreamweaver related question ;-)

    And here's my usual Mantra as "watchdog" for this particular forum: questions better in the future such regular Dreamweaver general discussion post or (where it s a PHP related question) the Dreamweaver Application Development forums. The current forum addresses issues related to uninstall Dreamweaver extension, which generates the server-side code and has been abandoned for more than a year, that is, the number of fellow forum participants is much more out there in the forums of regular Dreamweaver - who knows, some of them might even be familiar with Magento and could advise you better than what you have here ;-)

    Cheers and good luck,

    Günter

    PS Si you think that the answers that happened - sort-help to resolve your issue, please consider this marker as "answered".

  • Remove the new drop-down list menu search entirely (again!)?

    Since the upgrade to 43.0.1, there is a small window to appear whenever I type in the search bar, just like how it was there are several versions (see https://support.mozilla.org/en-US/questions/1035637 for the previous issue). I have suggestions search disabled, and I have browser.search.showOneOffButtons set to False in topic: config. How to make this new drop-down window disappear?

    "browser.search.showOneOffButtons" was a temporary pref from Firefox 34. The underlying code that have supported this preference is gone like Firefox 43.

    https://addons.Mozilla.org/en-us/Firefox/addon/classicthemerestorer/ has an option for old search (experimental) in Options of CTR > UI (1)

  • After you have installed windows on my notebook 10 notes all drop-down history menu and favorite tools have black background so can't read the text

    After installing windows 10 on my notebook that all drop-down menu history bookmarks tools etc. have black background so can't read the text

    It was much simpler that that I just check if my version of FireFox has been updated today it wasn't downloaded and everything beautiful. Thank you for everything that other gibberish "I also don't know solution but try this" typical in the forums with respect to proposed solution has no address or related to this question please

  • Cannot find the drop down bookmarks menu?

    I've held off updating Firefox to 28 later due to several reasons, one of them being the look of Chrome-like that hurts my eyes (just don't ask). Fortunately, the CTR has been created, and I've finally updated to version 34. And I'm not happy at all. There is an icon for Favorites bar SIDE, but not the menu drop down. There are also 2 icons in the sidebar of history and from the drop-down list story, so why the drop-down list of bookmarks missing? Much, I prefer the menu drop down and want to get it back.

    I really don't understand why Mozilla is so easy to use. This is the reason why I started to use Firefox in the first place and I've been very loyal for years. I'm tempted to throw my laptop against the wall and never give up come reconnected because of this nonsense about "looks elegant. I would be grateful if someone could help me find the menu drop down and allow me to forget angry.

    Thank you.

    Yep, looking for the button that I have included in my last post. Open new customization mode and look for the star icon is labeled "bookmarks". Drag the control to your toolbar and it will turn into two icons - you're a star (which can be used to quickly bookmark the page you are on), and the other opens the Bookmarks window.

  • I've just updated to 25.0 and I noticed the drop-down history menu has been simplified and back, forward and home are now gone. These can be restored?

    I'm running on a Mac (Lion) with 25.0 FF. I usually hide the toolbar because I like the most on my screen space without having to switch to full screen mode. So I usually use a custom keyboard command to navigate forwards and backwards in my browser session, but sometimes the keyboard command fails and the page does not. In the past, all I had to do was go to the history of the menu drop-down and choose "Back" or "Forward." I also use the selection 'Home' to return to my home page. But since I updated to 25.0 these choices are now gone in the history menu.

    Is it possible to restore them? And are they gone for all users (was that a global change) or one of my addons just aren't playing nice and causing this problem? TIA!

    The following article, the keyboard shortcut for home on MacOS X is option + home.

    Hotkeys - quickly perform common tasks of Firefox

    Note: If the Windows keyboard shortcuts article appears, check the editing tools section in the left column to select the correct operating system.

  • How can I activate the drop down bookmarks menu?

    I've just updated to version 19.0.2 (I don't know which version I had before) but the favorite icon does not have the little arrow on it and there is no drop-down underneath (on the right side of the screen) when I click on it; the entire sidebar is opening on the left side. How can I get directly the menu drop-down back?

    If you don't see an item on a toolbar and in the toolbar palette, then click on the "Restore default" button to restore the default toolbar set up.

    You can check for problems with the file localstore.rdf.

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance).

    • Do NOT click on the reset button on the start safe mode window or make changes.

Maybe you are looking for