Drop down menus in CS4

To be specific, would these drop down menus on this page
http://www.flashden.net/category/flash/menus-buttons/horizontal-menus
work in CS4?
Cam Flash CS4 create drop down menus without getting into
scripting? If so, is it like DW? Want to do a site like this
http://www.theswag.com/about.htm
Thanks.
SH

shoutzager wrote:
> Was wondering if Flash CS4 can create drop down menus
without getting into scripting? If so, is it like DW? Want to do a
site like this
http://www.theswag.com/about.htm
Thanks.
>
> SH
No it can't.
It's just like regular flash with the ability to design every
single element from scratch,
it is not Power Point ;)
The new features are more for Time line oriented design but
nothing too major. I have been
playing for a while and with all honesty, because I don't
code in AS 3.0, I don't find it useful
and I move back to Flash 8 Pro.
Best Regards
Urami
"Never play Leap-Frog with a Unicorn."
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

Similar Messages

  • My Drop Down Menus Do Not Work Properly in IE

    Hey. I'm really stuck and have been for over a week. Let me preface this by telling you I didn't build our website and have little knowledge of spry and spry assets. I can't the get the gentleman that built our site to help and I'm desperate!
    The site - www.ncsoccer.org , has drop down menus. They work fine in Chrome, FF and Live Preview (DW CS4). But in IE8, they do not.
    I had to revise the drop downs (changing names and removing some drop downs - I've done this with no problem before). When I uploaded the index page and the template pages, the error started.
    In addition, the people in my office that use Contribute to update their sections, cannot access anything but our index page and I don't know what (if anything) I've done wrong, as everything worked fine before the menu revision.
    I'm including the 'sprymenubarhorizontal.css" code below. Maybe you can see something that isn't right.
    Thanks for any insight or suggestions. Remember, asking me to create to create sprys or widgets or something like that may be over my head! Try to dumb it down for me!
    Thanks.
    Mark
    (sprymenubarhorizontal.css code)
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: auto;
    float: left;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 15em;
    position: absolute;
    left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 15em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
    width: auto;
    background-attachment: fixed;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #ffffff;
    padding: 0.3em 0.75em;
    color: #000;
    text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #cccccc;
    color: #000;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    background-color: #cccccc;
    color: #000;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-image:  url("SpryMenuBarRight.gif");
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-image:  url("SpryMenuBarRightHover.gif");
    background-repeat: no-repeat;
    background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
              display: inline;
              f\loat: left;
              background: #FFF;

    A;though the CSS is very well documented, there are those that ignore those signs. Look at the following
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: auto;
        float: left;
    The rest have been given a width of 15em, so this value may be a good start.
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border: 1px solid #CCC;
       width: auto;
        background-attachment: fixed;
    Just keep the border property and remove the other two.
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
              display: inline;
              f\loat: left;
              background: #FFF;
    The following is the original for the above
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;
    Cheers,
    Gramps

  • How do I get spry drop down menus to display infront of my content?

    Hi,
    I am currently using DW CS4 to create a website for a uni project. I have created a Spry Menu bar which displays correctly when I preview it however I have uploaded a few pages to my site to test them and the drop down menus disappear behind my content. Is there any way I can fix this?
    My web address is www.nataliemiddlemore.110mb.com if you want to have a look. There is currently only 3 pages uploaded.
    Also the drop down menus do accross the page horizontally rather than drop down underneath each other. Is there a way to fix this?
    I would be very grateful for any help and am only a beginner so keep it as simple as possible for me.
    Thankyou in advance.

    You have used Absolutely Positioned Divs for your primary content. AP Divs are (by definition) taken out of the normal flow of the page. When they are in the code after the menus, they might show in front of them. I did not experience that on my system, however.
    I don't see any overriding reason...beyond the thought that AP Divs are easy to make and place...for using AP Divs. Your page structure is very stable, and normal relatively-positioned Divs should work just fine.
    As to the drop down menus trailing horizontally across the page, control the width of this: ul.MenuBarHorizontal ul to contain the left-floating list items. That style selector shows up in the SpryMenuBarHorizontal.css stylesheet. The submenus should then fall vertically.
    Beth

  • Best practice for creating large drop down menus?

    I'm attempting to transition from using Photoshop to Fireworks cs4 for design and prototyping of websites.
    Right now I'm working on re-creating a nav bar design in FW. The design calls for large drop down menus with lots of non-standard content similar to nymag.com
    I've got each button setup as a 2 state button, however when the large drop down spans across to the right, the other buttons next to it appear to be over the first fly out. If I move that layer on top of the others, all the other buttons begin to act strangely. Any ideas?

    I have to agree with Pixlor and here's why:
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    and another:
    http://apptools.com/rants/menus.php
    Don't waste your time on them, you'll only end up pulling your hair out  :-)
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • Drop Down Menus Aren't Dropping Down!

    Hey and thanks in advance for any assistance!
    I had to update my drop down menus in DW CS4. I made the necessary changes, tested it on my computer and proceeded to update every template, then every page on the site.
    No problems as the menus worked fine on my computer, even after refreshing the pages.
    The problem lies that on every other computer in our office, the menus don't drop down, but extend horizontally across the page and off the screen now.
    My computer - drop downs.
    Other computers - horizontal mess.
    Here is our site!
    Suggestions?
    This was my first revision of the menus since I upgraded to CS4 (which I find more difficult). The code view on my index page had about 9 lines of space between each menu line, so I took that out. Could that have caused a problem?
    On a different note, in my viewing pane - my "page window" extends behind my folder view and I can't scroll up or down without minimizing the folders. Also the properties view used to fit nicely below the page window and beside the folders window, but now it extends behind the folders panel and I can't seem to fix this.
    And don't get me started on why DW would eliminate the ability to change colors without having to make styles! I still haven't figured out how to do that yet.
    Any assistance would be appreciated!
    Thanks.
    Mark
    NC Youth Soccer

    Okay, I've tried that and it didn't work. But even better, DW CS4 kept locking up (giving me the 'white screen of death') and closing down. When I tried to open DW again, it went through the motions and "disappeared" - would not finish the process.
    So I rebooted and tried again. Same thing. I reinstalled DW CS4 and it appeared to install fine. I opened it up, the screen came up, it loaded the cache, scanned my 2600+ folders and pages . . . and disappeared.
    Bottom line I can't access Dreamweaver. It's always locked up on me (a couple of times a day), but it's never been this buggy. I don't know if it's a compatibility issue with Win 7 or what. I'm seriously thinking of going back to MX as I dislike CS4 so much right now.
    As I said before, I never-never-never had these problems before I upgraded to CS4. Right now my feelings for DW are not in a good place!
    Thanks for trying anyway. If you have any suggestions, I'm more than open to them!
    Mark

  • Can't access drop down menus

    I have CS4 and recently installed Camera Raw 5.2 but the drop down menus for the TAT and Crop tool don't function. I have tried right clicking, shift clicking, control clicking, etc. and nothing works. I tried redownloading Camera Raw 5.2 again, but no improvement. Any suggestions?
    I have an Intel iMac, 2.16 GHz, OS X 10.4.11, 3 GB RAM, lots of hard drive space.
    Thanks,
    Rick

    Normal click inside the tool icon and hold the button down for one second while not moving the cursor.

  • Drop down menus in MX

    I have Dreamweaver MX, can I create drop-down menus without
    an outside extention or software? If not, what is a good one to
    use? In CS4, can Spry do that for you?

    > can I create drop-down menus without an outside
    extention or software?
    Yes, but only if you know how to do it without using this -
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    Check the uberlink and MacFly tutorials at PVII -
    http://www.projectseven.com/
    and the Navbar tutorial/articles at Thierry's place
    http://tjkdesign.com/articles/dropdown/
    Or this one (more recent article):
    http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp
    Or to get it done fast, go here -
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    If your needs are more robust than that simple tool provides,
    then you will
    not go wrong with others of the menu systems provided there.
    I use
    PopMenuMagic on about 90% of the sites I build. The only
    reasons that
    number is not 100% is a) some simple sites just don't need
    them, and b) some
    sites require a different approach. Again, for what it's
    worth, for those
    sites that require a different approach, I just use a
    different PVII
    menu....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "sbruem" <[email protected]> wrote in
    message
    news:gogvfm$nlr$[email protected]..
    >I have Dreamweaver MX, can I create drop-down menus
    without an outside
    >extention or software? If not, what is a good one to use?
    In CS4, can Spry
    >do that for you?

  • Drop down menus locked

    I cannot get the drop down menus to work for the shape tool etc.

    austgraph,
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Adding up Form Fields that are drop down menus

    I have the following form with a radio button, pull down
    menus and a text field. I would like to have a total amount due at
    the bottom of the form that adds up the tickets/contributions they
    would like to purchase. I have the radio button working but can not
    figure out the code for the pull down menu and text field.

    Is there a particular DW extension for drop down menus you recommend?
    Yes, the one in my previous post - commercial,but it can be used on multiple sites, no restrictions. You do have a choice, Read the descriptions of the tp 3 here:  http://www.projectseven.com/products/menusystems/index.htm
    I'd suggest the Pop Magic 2... is more versatile.
    Also, are there any resources you suggest for the painful transition from HTMl thinking in DW8 to CSS in CS4 like a Dummies book or Lynda.com? After three days of messing with CSS elements, I still think in tables for complex designs and I keep quitting the learning
    Here are some good tutorials to get you started, from the basics to completing a full site:
    http://www.macromedia.com/devnet/mx/dreamweaver/css.html
    http://www.macromedia.com/devnet/dreamweaver/articles/tableless_layout_dw8.html
    http://www.macromedia.com/devnet/dreamweaver/articles/css_concepts.html
    A good css / html reference site:
    http://www.w3schools.com/
    Lot of good articles on CSS over at www.sitepoint.com as well.
    It is a lot to take on board, but start off small, firstly by at least styling your current table layouts with CSS and then moving onto using Divs for layout.   It is nto as easy as some people say it is to move over from table layouts and sometimes you wonder whether it's worth it, especially when you may find yourself facing various browser bugs, but if you remember to code for Firefox first and then adjust for IE, you'll be set  :-)
    Good Luck
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • How can I correct the problems I've been experiencing lately  with drop-down menus in general as well as and leading of text. It 's occurring  on both Safari and Firefox browsers.

    The above headline pretty much covers the problems.
    Access to the drop down menus is erratic.  Sometimes it's problem-free, but at other times it's impossible to see the options on the menu, or if they are visible, it's impossible to effect a change by clicking on one of them.  The times I notice it most is when I am trying to change fonts or font sizes, but  it occurs at other times, as well.
    It's also frustrating to have to deal with double spacing (for example, when describing items on eBay).  Sometimes the text flows  normally,  but if I force a  return, the text that follows usually is double-spaced.
    Often,  the justification option does not work either.
    Occasionally, I can  get around one problem or another by switching back and forth between Safari and  Firefox, but eventually, the original problem resurfaces.
    Because it happens on both browsers,  eBay tech support is inclined to think the problem is in my software. (I'm inclined to agree.)
    Although they have suggested clearing  the history in FF, that option must have been relocated, because  it'sno longer under the "Tools"  menu, where it was  in the past. I also can't find  the clear  your cache option on OS Safari or 10.8.3.

    callthescribe wrote:
     ...Although they have suggested clearing  the history in FF, that option must have been relocated, because  it'sno longer under the "Tools"  menu, where it was  in the past. I also can't find  the clear  your cache option on OS Safari or 10.8.3.
    I don't think it'd help much but clearing history is now in the History menu, and setting FF to clear history on exit is near the bottom of the Privacy tab of FF Preferences.
    Also, if you don't have the Develop menu in Safari, open Safari preferences, click Advanced, and select “Show Develop menu in menu bar.” You'll find "Empty Caches" there.

  • Drop down menus on iPad, the first selection in the drop down will not load as a selection when using safari, what can I do?

    Drop down menus on iPad, the first selection in the drop down will not load as a selection when using safari, what can I do?  I use this for my mobile, on-site auto repair business and not being able to call up repair and diagnostic info and reference for some cars is troublesome for sure. It works fine on the computer and I have installed a remote desktop app as a workaround but it is unreliable because the desktop is not business dedicated and may be off or in use at the time. So is there a known fix for this?
    Let me paint a more descriptive picture, visualize 4 drop down selection menus, first one is for year, next one is for make, 3rd one is model and the last one is for engine size/type. If I wanted to choose a 2012 vehicle it wont work because it is the top selection on the list. This can be forced by selecting any other year and then coming back to 2012. Ok fine, but then let's say I wanted to choose Acura as the make, well it won't take it because again it's the top selection. Again you work around it be selecting any other make and coming back to Acura. Ok now select the model, same trend follows. But now since most Acura vehicles come with dedicated engines and no optional engines I have only 1 selection in that final drop down menu and it will not take my selection and therefore never let me proceed to the info I need.
    This is also true when ordering parts from my wholesaler's website, they use drop downs and I can only get to that last drop down and then I'm stuck. This is blindingly frustrating, what options do I have. I'm not opposed to any avenue at this point.

    Did you ever figure this out? I bought my iPad last week to use in my business as well. I assume you are trying to use alldata? That is where I noticed this same issue. I had problems with identifix working with safari but downloaded a different browser and that works fine. Alldata does not work with either browser. The main difference is that on identifix if there is only one engine selection, it automatically selects the only option and continues to the home page. With alldata you have to make the selection manually even if there is only one option. Honestly if I can't get this to work I am going to return the iPad as it looses a significant amount of usefulness to men

  • Drop down menus disappear in a blink of an eye. If I open more than 10 tabs I can't get to them, the arrow takes me back to the first 10. Only in FF, IE works fine. Tried safe mode and no change. It was fine one day and then not the next?

    drop down menus don't work...they disappear in a blink of an eye. This only happens in FF not IE? That includes the menu below! I can't have more than 10 tabs open because the arrow won't take me past 10 it just returns to the first 10???

    Did you ever figure this out? I bought my iPad last week to use in my business as well. I assume you are trying to use alldata? That is where I noticed this same issue. I had problems with identifix working with safari but downloaded a different browser and that works fine. Alldata does not work with either browser. The main difference is that on identifix if there is only one engine selection, it automatically selects the only option and continues to the home page. With alldata you have to make the selection manually even if there is only one option. Honestly if I can't get this to work I am going to return the iPad as it looses a significant amount of usefulness to men

  • I am having some serious issues with firefox, i can't print anything because it is stuck on fax and I can't use any of the drop down menus on any site

    I am having some serious issues with firefox to the point of choosing another search engine. I can't print anything because it is stuck on fax and won't let me change it to my printer when i do try to select my printer it jumps right back to fax. The drop down menus do not work on any of the sites I go to. For example when purchasing clothes and you have to choose a size from a drop down menu I can't do it when I click on the drop down menu it doesn't work at all. I don't have a virus I ran my virus protector and no viruses are present. I don't have any suspicious issues going on with my computer so there has to be something in Firefox that is causing my issues. I tried internet explorer and I don't have any issues there. I hope you can help me because I love Firefox and would really like to continue to use it.

    Lots of issues there, main one getting fcpx going again, try deleting the preferences using the utility deveoped by these guys.
    http://www.digitalrebellion.com
    Try deleting your render files and re-rendering the project.
    Start with these and let us know how you go.
    Tony

  • Gmail drop-down menus (Move to, Labels) and emails and Facebook chat will not open.

    I am unable to open emails in standard Gmail. Emails can be opened after switching to the basic html version. I am also unable to use the drop-down menus, such as "Move to" or "Labels." The button turns gray, but the options do not appear.
    Facebook chat is giving me a similar problem. When I click "Chat" in the bottom left, it acts as though it's trying to load but does not open up to reveal friends.
    I have tried the following: deleting cookies, reinstalling Java, updating my vid card drivers, and uninstalling/reinstalling Firefox
    Scans for viruses and spyware have yielded no results. I use AVG, Spybot, and Malwarebytes. The Gmail emails and menus will open in IE8.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • I ran Advance System Care 3 Disk Optimizer program and now my drop down menus are too fast. How do I slow them down

    I ran Advanced System Care3 disk optimizer program on my computer and now the drop down menus in Firefox open too fast. Mostly in the Bookmarks menu with nested folders. I went into the registry and changed all the "MenuShowDelay" data values back to 400(which were changed to 200 by the program. All the other windows programs drop down menus went back to the original speeds and are fine. Firefox did not change back to it's original delay speed. Where is the registry entry or configuration file for Firefox? How can I slow the menu down?
    Thanks,
    Tony

    I ran Advanced System Care3 disk optimizer program on my computer and now the drop down menus in Firefox open too fast. Mostly in the Bookmarks menu with nested folders. I went into the registry and changed all the "MenuShowDelay" data values back to 400(which were changed to 200 by the program. All the other windows programs drop down menus went back to the original speeds and are fine. Firefox did not change back to it's original delay speed. Where is the registry entry or configuration file for Firefox? How can I slow the menu down?
    Thanks,
    Tony

Maybe you are looking for

  • Will the MacBook run Worms 3D and Unreal Tournament 2004?

    I wish to change my current PowerBook for the new MacBook but for one of the things i use my computer the most besides for high school is to play games and i would like to know if the new MacBook will be able to run smoothly this two games.

  • Quicktime freezes explorer

    Every time I open a directory in explorer with quicktime movies in it (Windows XP) explorer freezes. In task mgr Quicktime is taking 50% of rescources, but can't complete whatever the operatyion is, showing thumbs or whatever...it's only when in thum

  • Podcast 'get more episodes' no longer works

    Hi, I download podcasts directly to my iPhone, however I have noticed in the last week Apple has made this harder. It used to be that if you pressed 'get more episodes' you would get a list of podcast episodes which you could then download. Underneat

  • Do I need FTP -Fetch

    Hi. I am in the mist of creating a website and am not going to use .Mac but another web host. Do I need to purchase FTP-Fetch to upload my site or does iWeb have all that I need to accomplish this task? If it does, is it possible to "attach" it to my

  • Content filter not fixed, still stripping message body

    The content filter that arbitrarily strips out (part of) the body of my email messages is not fixed: http://forums.adobe.com/message/1867251#1867251 Jochem Jochem van Dieten http://jochem.vandieten.net/