When the button is called 'tools' that Firefox keeps referring to when I ask for help with something?

In order to follow their directions for more help, told me to use a button called "Tools". Where is the "thing"?

Press Alt or F10 to bring up the Tools menu.

If the instructions tell Options it to open the window, click on the orange Firefox button, and then select Options.

Tags: Firefox

Similar Questions

  • What is the correct way to ask for help with the forum, rather than product, questions?

    I can't find the right way to ask a question about the forums themselves.

    PAGulley said

    I can't find the right part of the forum to ask questions about the forum itself and its features. I wonder what the right place and the way is to get help with the forum system itself. I can find the place to ask questions about specific Mozilla products very well.

    Look up where it says contributor tools and select Contributor Forums. Make sure that you scroll to the top or you'll get a bar with different links instead,

    The forum is https://support.mozilla.org/forums where you question would be better in the SUMO community discussions.

  • Can you tell me how I can ask for help with the following question of Indesign: I am a new user of Indesign and creative Member Cloud.  I was using the fall of the window/Pages to the bottom of the window to view my pages alphabetically or by page number

    I am a new user of Indesign and creative Member Cloud.  I was using the fall of the window/Pages to the bottom of the window to view my pages alphabetically or by page number and also to determine whether or not my JPEGs have been sufficiently high resolution of the printer.  I don't know how I did it, but somehow the window has changed so that now, there not alphabetical/digital/hi-res information.  It shows just the pages in a two pages in numerical order.  How to restore the window so that I'll be able to view the information I did previously.

    Your help will be appreciated,

    Don Unwin

    [Personal information]

    All I had to do was to click on the links and information in the drop-down list.

  • When I ask for help for XP drivers, typing a help site I get ONLY an upgrade to Win 7. This isn't what I asked! Where available technical support before information I want?

    I HAVE Win 7.gold I information NEED in XP for upgrades and drivers disks... When you go to these websites I ONLY get marks for the upgrade to Windows 7. This isn't what I need!   Windows 7 works on main PC with the strength to use it. The PC, I need to is a P - IV with a beard!

    Hi lefty637,

    1. what drivers XP did you?
    2. what previous available information are you looking for?

    Windows XP drivers are always available on the site for manufacturer of device or system. If you are looking for a Windows XP driver, then visit the system or device manufacturer to download and install it.
    See the search for Compatible for Windows XP device drivers
    See also, information material for Windows XP device drivers

    If you are looking for something else, then we provide more information, so that we can better help you.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • ask for help with the 3210, can not see the hp software, can't sweep

    Can someone help me with this, I have a 2.66 ghz processor mac intel core 2 duo, the osx running version 10.6.7 and scanner no longer works after update to latest software to 10.6.7.  I tried to download the software of hp hp upgrade, and then when it works not tried to download apple software update for hp.  Nothing works.  I can't activate a scan of the computer, the software icons have disappeared.  And I can't activate the printer, just shows 'no scan options '.  The computer allows printing, I can find a printer icon with the option of mac system preferences.  very frustrating hours pass, no solution, thank you very much, david.

    I was able to solve the problem by talking to a person capable of mac online, a person named kelly in oregon, basically, we did a software update (she waited w / me through 15 minutes of downloading), and mac program "image capture" is now effective for me for scanning documents.  I think I can have earlier been confused by the fact that the screenshot is a new program, I had been looking for hp scanning software and finder contains more than all the entries of "hp".  Image capture seems to work.  (FYI, we had briefly discussed to insert the original disc, but chose to not not to this since it does not say that it's usable in mac os 10.6 and since we had the opportunity to see if the system works after installing the downloaded software updates).

  • Ask for help with the query group by

    Hello
    I have the following table with values structure
    CREATE TABLE DUMMY
      (
        SR_NUMBER          VARCHAR2(100 CHAR),
        ASSIGNMENT_GROUP   VARCHAR2(100 CHAR),
        REASSIGNMENT_COUNT VARCHAR2(100 CHAR),
        CREATED DATE,
        CLOSED DATE,
        TARGET_DATE DATE
     )
     
     insert into dummy values('AAA','A','1','02-OCT-11','25-OCT-11','09-OCT-11');
     insert into dummy values('ABC','A','1','03-SEP-12','26-SEP-11','10-SEP-11');
     insert into dummy values('AVB','A','1','02-NOV-13','25-NOV-13','09-NOV-13');
     insert into dummy values('AFT','B','1','02-OCT-11','25-OCT-11','09-OCT-11');
     insert into dummy values('ACS','B','1','02-JAN-12','25-JAN-12','09-JAN-12');
     insert into dummy values('AVC','B','1','02-OCT-13','25-OCT-13','09-OCT-13');
     insert into dummy values('AAD','B','1','02-MAR-14','25-MAR-14','09-MAR-14');
     insert into dummy values('AAA','C','1','02-OCT-11','25-OCT-11','09-OCT-11');
    insert into dummy values('AAA','D','1','02-JUN-11','25-JUN-11','09-JUN-11');
    insert into dummy values('AAA','E','1','02-APR-12','25-APR-12','09-APR-12');
    insert into dummy values('AAA','A','1','02-FEB-13','25-FEB-13','09-FEB-13');
    
    ?
    I have the following requirement, the output should be:

    Number of ticket (sr_number)
    % of tickets inside the DL
    Number of tickets inside the DL
    Average cycle time (cycle time = closing date - date of creation)
    Total cycle time (cycle time = closing date - date of creation)
    Number of reallocations (sum)


    DL - (deadline) formula is, closed date < = target_date

    This should be displayed, grouped by year, then month, then the assignment group. The values must be in descending order (dates) is not sure that group in operation here.
    I am able to write the code base of the foregoing, but group from the year, month, and group assignment is pretty confusing to me.


    Can someone give me a voucher code...

    This may not give you exactly what you want, but if all goes well, it will give you something to work with:

    WITH tickets AS (
      SELECT TO_CHAR(created, 'YYYY') created_year,
             TO_CHAR(created, 'MM') created_month,
             assignment_group,
             COUNT(sr_number) ticket_count,
             AVG(closed - created) avg_cycle_time,
             SUM(closed - created) tot_cycle_time,
             COUNT(reassignment_count) reassign_count
       FROM dummy
       GROUP BY TO_CHAR(created, 'YYYY'),
                TO_CHAR(created, 'MM'),
                assignment_group
    ),
    dl_tickets AS (
      SELECT TO_CHAR(created, 'YYYY') created_year,
             TO_CHAR(created, 'MM') created_month,
             assignment_group,
             COUNT(sr_number) ticket_in_dl_count
        FROM dummy
        WHERE closed <= target_date
        GROUP BY TO_CHAR(created, 'YYYY'),
              TO_CHAR(created, 'MM'),
              assignment_group
    )
    SELECT t.created_year,
           t.created_month,
           t.assignment_group,
           t.ticket_count,
           NVL(dl.ticket_in_dl_count, 0) ticket_in_dl_count,
           NVL(dl.ticket_in_dl_count/t.ticket_count, 0) * 100 pct_ticket_in_dl_count,
           t.avg_cycle_time,
           t.tot_cycle_time,
           t.reassign_count
      FROM tickets t,
           dl_tickets dl
      WHERE t.created_year = dl.created_year (+)
      AND t.created_month = dl.created_month (+)
      ORDER BY created_year DESC, created_month DESC
    

    Published by: user1983440 on May 27, 2013 15:47 - added reassign_count

    Published by: user1983440 on May 27, 2013 15:54 - added ORDER BY

  • How can I remove the pop up next to my iMac? "to continue the 'java' command line tool, that you must install the JDK

    I can't seem to make the tour of the following pop up: "to use the"java"command line tool, you must install JDK.  I downloaded Java for many times, but the pop-up Guard reappear.  Is there any solution to get rid of this pop up, it makes me crazy?  Help, please!

    What java you have download and install.  To install is TIME legacy java 6 Apple for OS X, which can be downloaded here: Download Java for OS X 2015-001

  • I get a Firefox error message that says, "something tries to trick Firefox by accepting a security update. Please contact your network provider and ask for help. »

    I get a Firefox error message that says, "something tries to trick Firefox by accepting a security update. Please contact your network provider and ask for help. "Do you know what is happening here - what could be the problem? (I have the latest version of Firefox already installed. I previously got Firefox error messages indicating "Firefox update failed". However, I already have the latest version of Firefox installed when I got these error messages.)

    I think that we must hope that the problem will be resolved at the present time. If you see the error message again post in this thread. Also, it would be unusual get this message while trying not to update, but if you get if you try to copy and paste the details of console error that they can be useful.

    Use

    • keyboard Ctrl + Shif + J
    • or button-> Web Developer Firefox-> Console errors

    This kind of message is apparently the only normally expected when you try to update to Firefox. It seems strange that you get the message using a 'Œuvres' document, but others have reported this message seemingly random incidents.
    (So normally, you must clear the error console, and then try to update knowing the error messages have been the result of this attempt to update)

    If I had this problem my concern would be that some kind of malware may be involved, but the message can then indicate that all this malicious program is upset.

  • Phone call to home phone saying that Campeau Microsoft for help with my computer is infected with a virus?

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:?  PH false calls from people posing as employees of Microsoft to help me with the infection by the virus. Others have similar appeals? 

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    The game, 6 January 2011 08:26:45 + 0000, spider legs wrote:

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:?  * Ph false calls from people posing as employees of Microsoft to help me with the infection by the virus. Others have similar appeals? *

    * You have problems with programs * error messages * recent changes made to your computer * that you have already tried to solve the problem

    Please, in the future, remove all the verbiage above when you ask for a
    issue. It has nothing to do with your question. And ask your
    questions in the body of the message, not in the title. The title
    should be used only for a brief description of what is the question
    everything.

    Your phone call was a scam. This has been a very common scam these days. Hang
    upward on the appellants as this.

    Ken Blake (MS-MVP)

  • Hoax call on notifications about a virus tries to hijack your computer and ask for help to remove the files?

    OT: security.

    Dear community,

    Did anyone out there contacted by "windows" say you they receive notifications about a virus tries to hijack your computer and ask for help to remove the files? Initially, it was an area code 855, but now the number is unavailable. I get a lot of calls.

    any help would be appreciated

    Thank you

    Hello

    It's a scam.

    Here are the tips that we regularly give the posters who receive these types of calls:

    We have all the errors and warnings in our Event Viewer

    Either these so-called "Microsoft" Tech companies want to sell you a worthless software, or remote access to your computer to try to steal your credit card and bank information and also achieve an identity theft on you.

    You are the only person who knows if you gave them remote access.

    If you gave them remote access and you do Internet banking, contact your bank, to explain, and change passwords.

    If you use your online credit card, cancel and get a new one issued to you.

    And the only way that willl you know that you are free to them is to backup your data and do a clean install of your operating system.

    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

    And Microsoft does not contact you unless YOU have made prior arrangements with them to do.

    There is an article in the link I'm you provide at the end of this one

    Read this Information from Microsoft:

    "Avoid scams to phone for tech support.

    http://www.Microsoft.com/security/online-privacy/avoid-phone-scams.aspx

    Don't be fooled of unsolicited calls. Don't provide personal information.

    Here are some of the organizations that cyber criminals claim to come:

    • Helpdesk Windows

    • Windows repair center

    • Microsoft technical support

    • Microsoft technical support

    • Windows Support Group Technical Department

    • Microsoft Research and Development Team (team of Microsoft R & D)

    See you soon.

  • update failed opinion said: something is trying to trick firefox by accepting a security update. Please, contact your network provider and ask for help. help please

    What is the solution to this issue - is there one that will not make my eyes roll back in my head? What is a true message from Firefox?

    the popup looks like this:

    [firefix logo] Software update

    Update failed

    Something tries to trick Firefox by accepting a security update. Please contact your network provider and ask for help

    Whenever you get a message / popup that software / files must be updated.

    DO NOT USE ONE OF THE LINKS PROVIDED.

    If this can be a legitimate message, could also be a Virus or Malware.
    No matter when you want or need to check updates.
    Go to the website of the real owner of the program in question.
    For example, for Firefox, go to Mozilla.org
    or Firefox in any language.

  • Something tries to trick firefox by accepting a security update. Please contact your network provider to ask for help.

    The warning came after connecting to the internet.
    Something tries to trick firefox by accepting a nonsecure update. Please contact your network provider to ask for help.

    This problem may be caused by the presence of remains files in the program folder Firefox (defaults\pref) as a file firefox.js which replaces the URL of update with a wrong link.

    Do a clean reinstall and do not forget to remove the Firefox program folder to delete files that are the problem.

    See also:

  • Looking for help with the motion in still menus of EI.

    Need help to make a menu driven sequelae. can understand the import process in yet. I can't the buttons I did in AE to work. Anyone?

    Read this (but do not have your plan until you read the link at the end of the post):

    http://help.Adobe.com/en_US/Encore/CS/using/WSF49EA5DB-3743-49C2-9831-F66328B192F8.html

    The important part is:

    «The loop point is used first to disable the buttons.» Until the loop is reached, the Viewer cannot select or activate a button. The menu returns to this point on each repetition, so the buttons are disabled when the menu is displayed first. For rehearsals, the duration is shorter and the starting point for all video content in the menu is offset. »

    So in AE, you create a video (the substance of the application) which includes the image of the buttons as they fly in. Still is the addition of highlights. AE for a period of time could also create layers of button, but you will be less confused if you use Photoshop and again for the file menu itself.

    I forgot to give you this link for help, which is the help file to work with AE:

    http://help.Adobe.com/en_US/Encore/CS/using/WSA5513911-0AD1-440C-BDAD-2E0E806B425E.html

    This method begins with a menu into Encore and creates an AE composition from there. It can only work with AE CS6, since you have EN CS6. I don't remember if it is technically a form of dynamic link, which requires corresponding versions of the applications.

    There are a lot of ways to skin this cat.

  • Clicking on the tab help for help with photoshop first time get in "photoshop online help could not be displayed because you are not connected to internet" but I'm connected to the internet?

    Dear all

    I need help with the following problem:

    Clicking on the tab help for help with photoshop first time get in "photoshop online help could not be displayed because you are not connected to internet" but I'm connected to the internet.

    Appreaciate help on this problem.

    MSD

    I find it easier and faster to use just this link, which goes to the same place as aid > online help for Photoshop:

    Using Photoshop | Photoshop help

    To bookmark so that you can find.

  • Dialog box that says ' Creative Cloud Installer wants to make changes. Type your password for this purpose"- I type my password for Adobe ID (creative cloud), but it will not accept it. who should I go for help with this query?

    Dialog box that says ' Creative Cloud Installer wants to make changes. Type your password for this purpose"- I type my password for Adobe ID (creative cloud), but it will not accept it. who should I go for help with this query?

    It does not ask the cloud your computer admin password password!

Maybe you are looking for