Can i change the behaviour for the firefox menu so lists open instead of opening the 1st option?

is it possible to adjust the way the orange firefox menu behaves when you click an option?
currently hovering over an option opens the list underneath it(such as a list of bookmarks for the bookmarks option, or a list of visited pages for the history option) and clicking it opens the first item in the list.
i'd like to change this so the list is opened when you click an option too, since it's not possible to hover using a touchscreen.
it's rather annoying when the bookmarks management screen opens if all i want to do is bookmark the current page(which isn't possible from that screen)

i just downloaded what seems to be a preview/test version for the new interface(the browser calls itself UX) and its menu is a bit more touch friendly.
it does seem to have 1 major issue, if you put the bookmarks button inside the menu the bookmarks list can only use the height of the menu instead of the full height of the screen.
jscher2000: tapping the little arrow works, but it's too small to comfortably use.
i'll try out UX for now.

Similar Messages

  • Can I change the select option text for pnp ldb ?

    hi Akll,
    I am using a pnp logical database in my report and I have created my own hr category because i wanted to use field ename from the ldb in the selection screen. Now the problem with ename is I cant do a case sensitive search.
    So I have replaced it with sname, so now my screen has sname instead of ename, however I want to change the selection text for select option ( at present it is 'EE name can be sorted' )
    Kindly advise,
    thanks,
    GV

    I guess the text cannot be changed.. anyways you can add the field as an additional field by normal coding in your report

  • How can I change the import options for an Excel table in InDesign CS5.5?

    Hi,
    I have a problem with an InDesign script that works this way in ID CS4 and ID CS5, but stops working in ID CS5.5.
    What the script should do, is to change the import preferences for a table saved in an Excel file so that I can place an unformatted table into a new textFrame in my InDesign document. The Excel document is an .xlsx-File.
    function setExcelImportPrefs() {
        with (app.excelImportPreferences) {
             app.excelImportPreferences.tableFormatting = TableFormattingOptions.excelUnformattedTable;
    What the script does (or at least seems to do) is: nothing. The table that is placed into the textFrame by the script is always formatted, as this seems to be the standard preference of InDesign CS5.5 for importing tables out of excel files.
    Does anybody have a hint for me how to make the script work in ID CS5.5?

    Okay, now it is working. I had to save the XLSX-file into the older XLS format, but that seems to work quite well.
    But I won't ever understand why InDesign loses its backward compatibility from one version to the other.
    Thank you, -hans-.

  • How can I change the plotting options in an xy-graph?

    I am trying to plot an xy-graph, such that the data points are plotted as circles and connected by lines that stay horizontal at the level of the data point and then go up vertically at the next datapoint. In the properties menu for xy-graphs this options is given. However, it is grayed out and I don't know how to activate it. Can anyone give me a clue as to why this is? I put a red rectangle around the options that I am referring to in the attached screenshot... Thank you!
    BTW: I am using LabVIEW 8.0.1
    Attachments:
    screenshot7.JPG ‏43 KB

    smercurio_fc wrote:
    I'm not sure why the Properties dialog does not allow you to select the Interpolation style.
    This is apparently a bug (verified for 8.0 and 8.2.1). It has been fixed in LabVIEW 8.5.1. Time to upgrade.
    (In any case, it is just a UI issue of the properties dialog box).
    One problem is the fact that you have little control over the circle size. You can increase the size by increasing the line width, which gets ugly quickly.
    If you want full control over the circles (color, size, linewidth), use the "plot images" overlay feature as in the attached example (bottom graph).
    Message Edited by altenbach on 06-21-2008 09:47 AM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    SpecialXYInterpolation.vi ‏28 KB
    SpecialInterpolation.png ‏31 KB

  • How can I change the payment option instead of gift card to paying with credit card?

    I have an Itunes gift card on my account but i don't want to purchase the item on the gift card but instead on my credit card but i cant seem to find an option for it. Is there a way to be able to just charge it to my credit card or is it impossible?

    You just gift it and don't need to sign out.
    (103474)

  • How can I change the default drop shadow settings in Illustrator?

    When using Effect>Stylize>Drop Shadow on an image in a fresh document the default settings are pretty far from what I actually require. I very often work with tiny images so need a drop shadow that is about a fifth the size of what is offered on the first use.
    Can I change the default option?
    Presently using mac pro, mavericks with CC

    Thanks for the pointer - will open a copy of said file, search for the values of the current defaults and tweak them; will report back results.

  • CS4- JS : How to change the DTD Option - Reg.

    Dear All,
    I'm struggle to not getting the answer for change the DTD options though Script.
    Here I can Load the DTD using script and Validate then Its showing so many Errors, It means the root element is wrong [DOCTYPE] so the way I can change as per the XML Root Element.
    Root Element : Chapter
    Load DTD -> DOCTYPE name is  : text
    //================ Start Coding =================================//
    app.doScript(File("D:/program files/Adobe InDesign CS4/Scripts/XML Rules/glue code.jsx"));
    var myDoc = app.documents.item(0);
    var Store = new  Array();
    var count=0;
    myDTDPath = "C:\\Program Files\\Adobe\\Adobe InDesign CS4\\Executables\\Parser\\Macmil.dtd";
    myDoc.importDtd(File(myDTDPath));
    main();
    function main()
      if (app.documents.length != 0)
        var myDocument = app.documents.item(0);
        //This rule set contains a single rule.
        var DTDTitle  = new Array (new DTDRootTitle);
       with(myDocument)
         var elements = xmlElements;
         __processRuleSet(elements.item(0), DTDTitle);
      else
        alert("No open document");
      //Adds a return character at the end of every XML element.
        function DTDRootTitle()
          this.name = "DTDValidation";
          //XPath will match on every XML element in the XML structure.
          this.xpath = "//chapter";
          // Define the apply function.
           this.apply = function(elm, myRuleProcessor)
                with(elm)
                   Store[count] = elm.validate();
                   count+=1;
              return true;// Succeeded
            } //End of apply function
       for(var k=0; k<Store.length; k++)
            var test = Store[k];
             for(var m=0; m<test.length; m++)
              if(test[m].isValid == true)
              $.writeln(test[m].element.markupTag.name);
              $.writeln(test[m].errorMessage);
    //========================== End of the coding ==========================//
    Question : 1
    Manually I can load the DTD & change the DTD Options as per the Root Element of the XML.
    After Validate using Root Element Itself, Its working fine. Zero Errors.
    Mean while I can Load DTD though Script but I can't change the DTD Options, through Script.
    So Please any one can give me the solution for change the DTD Options using script.
    Please any one can give the solution, Really I can appriciate for this...
    Hope I'm waiting the result for this query....
    Thanks & Regards
    T.R.Hairhara Sudhan

    hello  T.R.Hairhara Sudhan
    i don't know whether this is write answer or not .
    do one thing from active doc get reference of Dtd and from dtd set rootTag = "root tag"
    e.g
    var dtd =  app.activeDocument.dtds[0];
    dtd.rootTag = xmlElement.markupTag;
    here xmlElement is value for "Validate from" in DTD option
    Regards
    tahir1987.

  • How do I change the printer options on an ipad air?

    i am changing service provider. Currently they overlap. My ipad is happy to find the current old provider but cannot find the new provider even when i switch to that network. I cannot find any options for changing printer options. how can I change the printer option to access the new provider? i have 4 weeks to get the answer. Thanks

    If you mean that the iPad is tied to another user's iCloud account, you have to ask them to erase the device for you. You can't do it on your own. The device requires their Apple ID and password in order to turn off Find My iPad and to delete the iCloud account.
    IF you just want to sign into another Apple ID (not recommended either) go to Settings>iTunes and App store>Apple ID and sign out of that ID and sign into your ID,

  • Firefox keeps my history for too long. how can i change the setting to 2 weeks

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/903677]]</blockquote>
    firefox keeps my history for too long. how can i change the setting to 2 weeks

    Do you mean you have a Macbook Pro (laptop) versus a Mac Pro (desktop)?
    You can back up the MBP, restart using Command+R to boot into the Mavericks Recovery HD, erase the Mactintosh HD and Reinstall OS X. Then you can go through setup and configure it with your information and Apple ID. Mavericks should not prompt you for an Apple ID when it goes through the install since that OS is free.
    One thing you might want to consider is asking the previous owner to unregister the MBP from his Apple ID if he previously registered it. Then you can register it under your Apple ID.
    The previous owner should have wiped it clean and reinstalled the OS that came pre-installed before selling it.

  • How can I change the background of a running webpage on my own. Example Facebook I want to change its backround color from white to black just in my view not for all

    How can I change the background of a running webpage on my own. Example Facebook I want to change its background color from white to black just in my view, not for all. Cause I really hate some site with white background because as I read for an hour it aches my eyes but not on those with darker background color.

    You can use the NoSquint extension to set font sizes (text/page zoom) and text colors on web pages.
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • When I opt to "download this as a file" from my email account, Firefox defaults to notepad to open the file. How can I change the default to MS Word?

    Question
    When I opt to "download this as a file" from my email account, Firefox defaults to notepad to open the file. How can I change the default to MS Word?

    Is FF downloading the file as a .txt file? If so, go to "Folder Options" in the windows control panel. Click on the "File Types" tab. Scroll down until you reach the TXT file extension. Look to see what that extension opens with (lower part of panel). It probably shows notepad. Click on the <Change> button. Scroll down until you find "Microsoft Word." Select it and click the <OK> button. That should show the TXT extension is now associated with Microsoft Word. Click the <Close> button at the bottom of the panel.
    If FF is downloading the file as any other type, use the same process as above except look for the corresponding extension instead. If the extension is not listed click on the <New> button and create an association using the extension in the file name and then associate it with MS Word.
    davewdan

  • How can I change the default application for a content type?

    Running a version of Linux, the default application for PDF files is "Use Document Viewer (default)", which appears to be /usr/bin/evince. I'd much prefer to use /usr/bin/okular; how can I change the default. This question is NOT about how to change the function that is automatically applied when I access a link, in this case "Preview in Firefox", but rather to the default application that I can select when I download a file being viewed in Firefox's previewer.

    This is real progress, a solution to the problem as posted. The command:
    xdg-mime default okularApplication_pdf.desktop application/pdf
    makes okular the default.
    However when I added okular to the choices for applications in:
    * Edit>Preferences>Applications>PDF
    the popup box that appears when I click Download on the preview page changed. The pulldown menu that appears next to "Open with" used to have 3 entries:
    # Document Viewer (default)
    # Acroread
    # Other
    Now it has only 2:
    # Okular (Default)
    # Other
    I'd like it to read
    # Okular (Default)
    # Acroread
    # Other
    How can I control the entries in this pulldown list?
    Also, how can I make the default choice in the popup box be
    * Open With <whatever> , rather than
    * Save File ?

  • How can I change the ENTIRE look of Firefox?

    How can I change the ENTIRE look of Firefox? I.e. I want to change all icons that appear in the browser - the loading "gif" the firefox...well... fox of fire in the "about" page, etc. Also what text shows up, for example on the "about:robots" page, and when hovering over a button, etc.
    I could do something like that with an earlier version of Firefox, and I found the quotes from the "about:robots" page in the "omni.ja" archive, extracted, changed them and replaced in the original archive, along with other icons, however they do not seem to be implemented. :/
    I do not mean changing the desktop or .exe icons, already did that.

    You can make a theme, https://developer.mozilla.org/en-US/docs/Themes

  • How can I change the default apple ID for app store. I bought the macbook from my school when I left and I'm the ID in place of mine is the computer departments one. How can i change it to mine?? Thanks

    How can I change the default apple ID for app store. I bought the macbook from my school when I left and I'm the ID in place of mine is the computer departments one. How can i change it to mine?? Thanks

    http://support.apple.com/kb/ht5621

  • Can you change the legth of time (or number of rings) it takes for on iphone 4 to time out making an outgonig call?

    Can you change the legth of time (or number of rings) it takes for on iphone 4 to time out making an outgonig call?
    Mostly it's to call in for radio contests. The Iphone is really good at making a quick call, but it seems to timeout after 15-20 rings. I realise this is a small thing, but free tickets is free tickets.
    Most commenst I see is abotu incoling calls, not outging.
    Thanks.

    No. You can't do this with any phone.

Maybe you are looking for

  • I have ADE on 4 devices and currently over 2000 books which I want on all of them. How do I sync everything so I don't spend my life manually doing this?

    I need help. I have ADE on 4 devices and currently over 2000 books. How do I sync all the devices so I don't spend all my time doing this manually. I have had ADE before, on my Palm, but it crashed and ADE didn't have a mobile app at the time, so I g

  • How do I get the vibration on my phone to work again?

    A couple of days ago, the vibration on my phone just stopped working. I really don't know what could have caused it. I tried turning off the vibration and then turning it back on. I've tried shutting off my phone and then turning it back on. I tried

  • Importing Album- backwards

    Whenever I import an album off of iTunes, the songs are uploaded into my library in the reverse order, therefore when I burn it into a disc, all the songs are backwards! It irritates me and I was wondering if there was any way to change/fix this with

  • Switching from OS to Windows

    I own an 80gB iPod classic that I used to sync with a Mac. I have recently lost access to the Mac and have had to back to using my laptop with windows XP. I can't sync it because that would involve having to format my iPod and therefore lose all my l

  • My ipod touch won't connect to my wifi

    A few days ago my iPod touch, 5th gen would connect to my home wifi just fine but now it won't. Every time I try to reconnect, it says that it can't or it failed. I've tried holding down the on/off button and the home button at the same time and then