Firefox opens a new window called "shortcut to ...." at random times

Hi all
I've found over the pass few days that at random times when firefox is open, it opens a new window called "Shortcut to .....". i cant see the new window tho can see it from the bottom windows bar
Any one else seen this?
Thanks

You may have set a download action to open a link in Firefox instead of to an external program.
Try to delete the mimeTypes.rdf file in the Firefox Profile Folder to reset all file actions.
*http://kb.mozillazine.org/mimeTypes.rdf
*http://kb.mozillazine.org/File_types_and_download_actions#Resetting_download_actions
You can use this button to go to the Firefox profile folder:
*Help > Troubleshooting Information > Profile Directory: Show Folder

Similar Messages

  • When I try to follow a hyperlink, Firefox opens a new window that stays blank.; also I can't download a hyperlinked file.

    I recently bought a laptop that is equipped with Windows 7. I needed new drivers for my Canon printer and was able to locate the new software on their website. When I tried to activate the hyperlink, Firefox opened a new window with the proper address in the "window". however the window stayed blenk. Similar actions with IE yielded desired results.
    I got the same "dead end" when I tried to download a form from Mozilla; again IE worked fine.

    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]]
    * [[Troubleshooting plugins]]

  • Firefox opens a new window every time I click a link. I reset FF and it did not fix the problem.

    When I click on any link, the browser opens a new window. I have searched the browser options to fix this and have not found a place to select a different option. I have reset Firefox and checked all of my plugins and have not found anything that seem to be related to my problem. Sometimes, Firefox will work normally for the first few minutes of use and then start opening a window for everything.
    By normally, I mean that I click a link and it opens the link in the same tab that I'm browsing. Some links will open in a new tab, depending on the type of link. Mostly, they open in new windows no matter what.

    Boot the computer in Windows Safe mode with network support (press F8 on the boot screen) as a test to see if that helps.
    *http://www.bleepingcomputer.com/tutorials/how-to-start-windows-in-safe-mode/
    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    *https://support.mozilla.org/kb/troubleshoot-firefox-issues-caused-malware

  • How do I change firefox to open a new window when I start it several times instead of opening a new tab when I want to go to a different location?

    I want to go to several different websites at the same time. I want to compare the information on each site. I do not want to open a tab, I want a whole new window. How do I change firefox so it will open a new window instead of opening a new tab and then requesting the site I want to go to?

    In Windows XP I am able to right click a link and get an option to open it as a new Firefox window
    *'''tear off tabs'''
    You will probably note tabs can be dragged along the tab toolbar, they also tear off. You can click a tab and drag it off the browser onto the Windows Desktop where it will open as a new window, or drag it on to another open browser window.
    An alternative is to click the tab and drag it down, again it will then open in a new Window.

  • Whenever firefox opens a new window a bar comes across the screen at the top with the word "allow" or an "X" on the right side. When I use allow, it closes.

    This happens when I have only one tab, or window, open. Example, I am on a site like my banking site, and each time I click for a new operation, the black bar comes on just under my tool bar and asks if I want to allow the move to a new page, but it does not open a new window. If I hit allow, it usually closes my site and I have to log on again. If I hit the x, it also closes the window and I have to log on again. This has happened on a pc and at home on my mac.

    This?
    *Firefox > Preferences > Advanced > General : Accessibility : [ ] "Warn me when web sites try to redirect or reload the page"
    The setting in "Firefox > Preferences > Advanced > General" is meant as an accessibility feature, as you can see by the label of that section, so that people with disabilities or people who use screen readers do not get confused and is not meant as a safety protection to stop redirecting.
    See also:
    *https://support.mozilla.org/kb/Options+window+-+Advanced+panel#General_tab
    *http://kb.mozillazine.org/accessibility.blockautorefresh
    *http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • Opening a new window calls action methods again.

    Hi all,
    I have a form that has a button to submit the information. For certain scenarios that submission can take over 30 seconds. So while that submission is taking place I hit <ctrl>-N on the browser to open a new window. This new window is calling the action methods associated with the submit button of the form.
    My guess is that this second window is sharing the session information of the other window and therefore is sending the request flow through the state of the other view.
    What can I do to handle this case?
    Thanks.
    Jason

    If you want to open a new window besides your original window, then you have to do it with javascript. Put a code similar like this in your onClik property of your hyperlink:
    window.open("faces/Page1.jsp", "","toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=450");
    return false;When you click the hyperlink, it will open a second window of Page1.jsp. You can use if-else construct in javascript to choose which page you want to show.
    If you want to pass a value to the second window, you can use query string like this:
    window.open("faces/Page1.jsp?par1=value1", "","toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=450");
    return false;Passing a field value in table component to second window:
    window.open("faces/Page1.jsp?par1=#{currentRow.value['FIELDNAME']}", "","toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=450");
    return false;To retrieve the parameter in the second page (in this case Page1.jsp), put this in init():
    javax.servlet.http.HttpServletRequest req = (javax.servlet.http.HttpServletRequest) getExternalContext().getRequest();
            String par1 = req.getParameter("par1");After getting the parameter value, you can do the rest as your normal page, ie populating the page the way you like.
    AFAIK, the only way to open a new window is through javascript only. CMIIW.
    Hope that helps.

  • Firefox opens a new window with sites I never visited and don't want, I can not close these tabs or open another tab from them.

    I open a new window and two sites appear, One I had never heard of till now. Digg. I can't open a new tab from these tabs, there is never an x on the tab and close all other tabs does not get rid of them.

    Do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • Firefox opens a new window and moves the active tab to it. How do I stop this?

    Got multiple tabs open. Firefox suddenly closes the tab I'm working on (this seems to happen when I'm scrolling) and moves it to a new window, shifting the focus to a previously inactive tab. What a swell feature! How can I get rid of it?

    Firefox 3.5/6 versions have a feature called tear-off tabs.
    You can detach a tab from the current window and open it in a new window by dragging a tab in the browser window.
    You can drag that tab back to the tab bar in the original window to undo that detaching.
    bug489729 (Disable detach and tear off tab): https://addons.mozilla.org/firefox/addon/12276

  • When I click on a link, Firefox opens a new window for that link, how do I change this setting?

    I am unaware of having made any changes to my settings before this started. The best way I can describe it is that simply clicking on a link causes it to "open link in new window" rather than simply "open"

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Firefox opens in new window under current one

    whenever I right-click on a link and select to open in a new window, the resulting new window always disappears under the current one. I am finding this to be rather annoying as I am used to the window opening in front of the previous one, meaning I didn't have to go chasing it in the taskbar icons.
    I can't say for sure when it started happening, but I'm thinking since a previous update.
    I have had a look under options, but can't find anything relating to it.
    how do I fix this annoyance?

    Surebrec,
    '''Update:''' I found this, which you might want to try out before continuing reading: http://www.techsupportalert.com/content/how-stop-firefox-stealing-window-focus.htm
    Basically that would mean the reverse for you.
    If that didn't work:
    Does this problem appear without you having many applications running at the same time and/or if you have pinned a lot of applications to your Taskbar in Wondows 7?
    Some users have reported that this problem manifests itself if the row of icons in the Taskbar simply can't make room for any icons expanding (i.e. new windows in for instance Mozilla Firefox or Internet Explorer).
    If so, you might want to take a look at: http://support.mozilla.org/en-US/kb/reset-firefox-easily-fix-most-problems

  • Links in other applications opening in new windows now instead of tabs randomly

    Randomly today after booting up my PC and opening firefox links I receive from other people on like AIM or Steam chat open a whole new window where as before they would just open a new tab. It's veryyyy annoying and I have the option "Open new windows in a new tab instead" on. I'm using aurora build by the way, if that matters.

    Try to ask in the daily thread or create a new thread on the MozillaZine Builds forum, maybe someone there knows an answer.
    *http://forums.mozillazine.org/viewforum.php?f=23
    You need to register on the MozillaZine forum site in order to post at that forum.

  • Wy does firefox open a new window when i click on "open link on a new tab"?????

    the only time i shutdown a window is when i shutdown firefox.
    having mutiple windows invites to mistakes. please fix.

    That issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • When I open a new window, it doesn't attach itself to the bottom toolbar? I'm using XP Pro and Firefox 6.0.2.

    It's explained pretty well in my initial question. Not sure what else you would need in the way of details.
    I will say it's been going on for a month or so, and it happens every time I start Firefox, and every time I open a new window.

    Thank you for taking the time to leave an answer for me, Poochie1. I really appreciate your attempt at helping me.
    Unfortunately, as smart as I thought I was when I asked the question, I apparently wasn't that smart, because I didn't explain my problem so you'd know what the heck I was talking about.
    I think it's because I'm probably not using the correct terminology. I'll try again.
    When I open a new window, it just kind of floats on the screen. Before this new update, I could open a window and it was lined up with the start taskbar located at the bottom of the screen. Sometimes the new window will cover up the taskbar partially, and sometimes completely. I have to move it up and align it with the taskbar. Then, when I open another new window, I have to line that one up with the window underneath it.
    I hope that description is better than my first one, and I hope you can make some sense out of it, Poochi (and anyone else who happens by here).
    Again, thank you for your help.

  • When a game or survey opens a new window in firefox it makes annoying sounds like from the game,mario brothers.Is there a way to stop this?

    When firefox opens a new window for games or surveys,it makes annoying sounds that sound like mario brothers,Is there a way to stop this?
    == This happened ==
    Not sure how often
    == Just today as far as i know may 21st

    I have the same problem that started about an hour ago. Firefox started sounding like pac man. I uninstalled and reinstalled 3.6.3 to no avail. I guess I use IE until firefox fixes it.

  • How do I stop Firefox from opening a new window when I go to a search item?

    When I do a search, and click on a topic, Firefox opens a new window on the tool bar at the bottom of my screen. How can I stop this from happening?

    I'm guessing you use Google for search. There is a setting in Google search to open each result in a new window. (When you use tabbed browsing, that means each result opens in a new tab.) You can check on whether you have that setting turned on as follows:
    On a Google results page, click the button on the right side with the "gear" icon, then click Search Settings from the drop-down list. At the bottom of the page is the setting to open results in a new window.
    Is that the culprit?

Maybe you are looking for