How to make Firefox the default browser for Hotmail

I recently uninstalled Safari because I want to use Firefox as my default browser. Previously when I click the Mail button in Windows Live Messenger, the mac would automatically open my hotmail in Safari. Now that I have uninstalled it, when I click on the Mail button, it opens up with TextEdit. How do I make it open with Firefox?
Any help is much appreciated.
Thanks,
Joe

OK I'll post there also but I'm aware of the preferences section in Safari... thing is, when I choose to make Firefox the default browser, it resets back to Safari when I turn off the computer and turn it back on. Everytime. And it does my head in
I heard of a program called More Internet that I heard could help slove the problem but I can't understand how to use it, nor is there any forum or any way to contact anyone who knows. It's driving me up the wall.
So I'm hoping there's another way that someone in the world knows.

Similar Messages

  • Google search in MacOS - how to make firefox the default browser?

    Hi there!
    I tried to address my issue looking in the forum as well as other websites; not too fruitful.
    In most of the applications in MacOS, let's say in mail, when you open an email and select a word or a sentence, ctrl+click, you can "search in google" for what is highlighted.
    Although my default web browser is Firefox (everytime I click a URL, firefox opens), every time I use the 'search in google' option, safaris pops up.
    Any hints? any way to get the OS to search in google using firefox by default?
    Thanks!

    redcloud75013 wrote:
    Hi there!
    I tried to address my issue looking in the forum as well as other websites; not too fruitful.
    In most of the applications in MacOS, let's say in mail, when you open an email and select a word or a sentence, ctrl+click, you can "search in google" for what is highlighted.
    Although my default web browser is Firefox (everytime I click a URL, firefox opens), every time I use the 'search in google' option, safaris pops up.
    Any hints? any way to get the OS to search in google using firefox by default?
    no. this particular function is hard coded into OS X apps like Mail. it therefore doesn't matter what your default browser is, google search will always use safari.
    Thanks!

  • How do I make Firefox the default browser in a non-administrative Windows XP account, where clicking to do so has no effect?

    I have two accounts for myself on my PC running Windows XP. In the administrative account, Firefox is already the default browser that opens when I double-click an HTML file, etc. Firefox knows it's the default browser there.
    In my other account, every time I start Firefox, it tells me it's not the default browser. Clicking there to make it the default, or in the options, does nothing.
    When I go to Set Program Access and Defaults in the administrative account, "Use my current Web browser" is selected. Mozilla Firefox is not listed as an option. In my non-administrative account, the Add or Remove Programs control panel can't be used. It says I don't have permission.

    To check that in the other account you would have to give it temporarily administrator permissions.
    See:
    *https://support.mozilla.org/kb/How+to+make+Firefox+the+default+browser
    *https://support.mozilla.org/kb/Setting+Firefox+as+the+default+browser+does+not+work
    *http://kb.mozillazine.org/Default_browser

  • How to make Firefox the Default search engine on Android Kitkat

    HTC Desire 816 with Google set as Default

    Here's how to [[Make Firefox the default browser on Android]] .
    [https://support.mozilla.org/en-US/kb/make-firefox-default-browser-android]
    Did this help you? We will love to hear from you.
    Thanks.

  • How do you make Firefox the default browser when the normal way doesnt work?

    Im trying completely from chrome after a friend showed my how much firefox has got its act together. However i cant for the life of me set it as the default browser. I have tried the "make firefox the default browser" button in firefox, which simply opens the windows default programs panel. Whenever i try to use the panel it simply sets the http protocol to nightly which isnt even installed!( http://puu.sh/2vJHM ) I think a possible fix would be to manually change the registry, but i wouldnt know where to start.

    Did you check the box on ''Options > Advanced > General >[X] "Always check to see if Firefox is the default browser on startup"?
    Have you restarted Firefox and if so, or when you do so, what does that section on the advanced Firefox options show?
    Have you tried restarting your system after setting the default browser using the second suggestion and, after restart, check the setting per the second suggestion to see if that setting is holding?
    Updating your Plugins would have no affect on the default browser question. It was something that you needed to do to avoid security issues online by using an out of date version of Java. Java is not involved in the default browser issue. That is why I separated it from the first part of the reply with a line and began with the word "Other".

  • Is there a way to make Firefox the default browser?

    No more detail is needed

    hello cole_l, yes - please see [[Make Firefox the default browser on Android]] for instructions.

  • How do you invoke the default browser for Unix/OSX

    Does anyone know how to programmatically display the contents of a URL in the default browser for a Unix system? I found a javaworld article on doing this using Runtime.getRuntime().exec(cmd). The article gives the cmd string for invoking the default browser in Windows, and for invoking the Netscape browser in Unix.
    This can easily be extended to invoke any known browser executable in a known path on a Unix system; but I'd like to invoke the default browser without knowing what or where it is. I'm specifically targetting Mac/OSX, but any Unix solution is worth trying.
    Is there a Unix command for launching the default browser to display the contents of a given URL? Or is there an alternative approach, rather than invoking Runtime.exec()?
    -Mark

    After extensive google searching, I came across a partial solution. This code detects the default browser on a Mac, and provides an elegant solution for trying standard browsers in turn for other Unix systems. I tested it on WIndows XP and Mac OSX 3.9, and it detected the default browser each time. A suped up version of this tool is available as a SourceForge project. You can find it here:
    http://sourceforge.net/projects/browserlaunch2/
    Here's the simplified code:
    //  Bare Bones Browser Launch                          //
    //  Version 1.5                                        //
    //  December 10, 2005                                  //
    //  Supports: Mac OS X, GNU/Linux, Unix, Windows XP    //
    //  Example Usage:                                     //
    //     String url = "http://www.centerkey.com/";       //
    //     BareBonesBrowserLaunch.openURL(url);            //
    //  Public Domain Software -- Free to Use as You Like  //
    import java.lang.reflect.Method;
    import javax.swing.JOptionPane;
    public class BareBonesBrowserLaunch {
       private static final String errMsg = "Error attempting to launch web browser";
       public static void openURL(String url) {
          String osName = System.getProperty("os.name");
          try {
             if (osName.startsWith("Mac OS")) {
                Class fileMgr = Class.forName("com.apple.eio.FileManager");
                Method openURL = fileMgr.getDeclaredMethod("openURL",
                   new Class[] {String.class});
                openURL.invoke(null, new Object[] {url});
             else if (osName.startsWith("Windows"))
                Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + url);
             else { //assume Unix or Linux
                String[] browsers = {
                   "firefox", "opera", "konqueror", "epiphany", "mozilla", "netscape" };
                String browser = null;
                for (int count = 0; count < browsers.length && browser == null; count++)
                   if (Runtime.getRuntime().exec(
                         new String[] {"which", browsers[count]}).waitFor() == 0)
                      browser = browsers[count];
                if (browser == null)
                   throw new Exception("Could not find web browser");
                else
                   Runtime.getRuntime().exec(new String[] {browser, url});
          catch (Exception e) {
             JOptionPane.showMessageDialog(null, errMsg + ":\n" + e.getLocalizedMessage());
       }

  • How to set Firefox as default browser for Mail

    When I click on links in Mail, they open in Explorer. So, I trashed Explorer, and now when I click on links I get "Mail was unable to open the URL. No associated application could be found."
    G5   Mac OS X (10.3.9)  

    Launch Safari and open its preferences. You set the default browser there.
    Not very logical is it? I think a Microsoft plant came up with that one.
    John

  • How to make helvetica the default font for Endesign?

    everytime that I create a document, times is the default font, but most of the time I use helvetica and I want to make it the default font.
    thanks.

    I gave the answer to this question to someone else today. Read this thread: http://forums.adobe.com/thread/992749?tstart=0

  • How to make Preview the default reader for pdf files online?

    Hi everyone,
    Many product manufacturers put their product's broucher in pdf form online.  I've tried the screen shot capture method for saved pdf files but when the file won't even open online, how do I get to even capture a screen shot in the first place?  Is the problem in Safari 6?  Many thanks in advance.

    Hi Anthony,
    So, you're instincts were correct - it is Safari.....
    I use Firefox as my browser (I'm not a big fan of Safari or on Windows, of Explorer). When I clicked on your brochure in Firefox, it comes up with a little window asking me what I want to do with the file - and with the "Open With" Preview" button checked.
    When I do the same with Safari, it opens a new Safari window, displaying it online, but not downloading it.
    So, don't know if you want to download Firefox, but did want to let you know that's why it was working differently for me!
    Good luck with this - hope you are able to get it to work out for you!
    Cheers,
    GB

  • How to make firefox the default search engine?

    Somehow the generic internet was defaulted and I can't find how to reset it.

    Go to 'Tools', 'Options', 'Advanced' then check the last option of the tab 'Default'.

  • How to make firefox my default setting for sending links instead of internet explorer

    if i rt click on a link to send to a mail recipient, it uses internet explorer and this does not work correctly. i want to use fire fox which is now set up to send via windows live hotmail

    See:
    * [[Changing the e-mail program used by Firefox]]
    * http://kb.mozillazine.org/Default_mail_client

  • How to designate firefox as default browser

    When starting my laptop, Internet Explorer assumes the role of default browser when I open Mozilla Thunderbird (for mail), printing and other tasks associated with utilizing Mozilla Firefox.

    Please see [[How to make Firefox the default browser]].

  • I have Windows XP and have tried everything to make Firefox my default browser can not. What do I do, short of deleting Internet Explorer?

    I have followed all the instructions Mozilla provides in its Help section but somehow I can not break the link between Windows and Internet Explorer.

    One of these should help you:
    * http://support.mozilla.com/en-US/kb/How+to+make+Firefox+the+default+browser
    * https://support.mozilla.com/en-US/kb/Setting+Firefox+as+the+default+browser+does+not+work
    * http://kb.mozillazine.org/Setting_Your_Default_Browser#Setting_default_browser_manually
    I noticed in your plugins (click "More system details..." next to your original question post) that you have a version of Java with known security issues that needs to be updated.
    * Next Generation Java Plug-in 1.6.0_21 for Mozilla browsers
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Java:'''
    #* Download and update instructions: https://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    #* After the installation, start Firefox and check your version again.

  • How can i clear history. also how can i make Firefox my default browser

    i had some answers from i think from one of your Forums, however i must not of had the steps clear. there are really had those clear

    If you want to clear history go to Settings-->Tools-->Privacy-->Clear Data and now choose what you would like to remove.
    And if you want to set firefox as your default browser try this article [[Make Firefox the default browser on Android]]

Maybe you are looking for

  • How to display Titles in Browser using Flex 3

    Hi , How is it possible to have a Title Name on the Browser window ?? Any ideas ?? Thanks in advnace .

  • Switch Statement not initializing value

    I'm taking a basic JAVA class and one of our assignments is to use the switch statement to determine the price of a product the add up the total of all products entered at the end. The code below won't compile because it says that "price" isn't initi

  • Time/Date in Alert Email

    OK, so I know all about the %s, %o, %t, yadda yadda. But in the default view, Zen sticks the time and date of the trap. How do I get that in my alert if I use a custom email alert? Is there a % variable for time & date? Thx!

  • Upgraded to v7 can't burn playlists longer than 50ish MBs to 80MB disc - Y?

    Upgraded from v6 to v7.0.2 iTunes today. Tried to burn a playlist consisting of 18songs 1hour 80.1MB to a blank CD but couldn't? When previously I did (earlier today) when I still had iTunes v6? Managed to successfully burn a playlist (in v7) of 11 s

  • Audio Gets Progressively Worse in Video Chat

    I am video chatting with my father and finding that as the chat goes on, my audio gets progressively more delayed. I am using iChat and my father is using AIM through Trillian Pro on Windows XP. Video is great, and my father's audio comes through in