Cannot open link in new tap or window after update to v.5

I'd updated to V.5 and then found that it cannot open link in new tab or window, from google page, after updating. I'd reinstalled 2 times but it still be the same problem. How should I do? Please suggest.
Thanks.

This didn't fix the problem so I have decided to revert to the previous version: 24.6.0 esr. Maybe when version 31 or 32 come around I come back to the "latest" version?

Similar Messages

  • Right-clicking Open Link in New Tab or Window doesn't work

    After upgrading to the latest version, 30.0, the right-click functions to Open link in New Tab or New Window stopped working. When I click the link that I would like to open in new tab or window, the right click window appears, I click on the desired function, and the right click window closes and nothing happens.
    I restarted in safe mode and the problem remains. I am using Windows XP. I also tried uninstalling Firefox and then doing a clean re-install and that didn't help.
    For now I went back to using version 29.0.1. Yes, I know that it isn't as safe but I can't use Version 30. without the right-click options!!!
    I really wish the developers would focus on fixing bugs, vulnerabilities, etc. and leave the basic functions alone! The old saying if it isn't broken don't "fix" it!!!!!

    This didn't fix the problem so I have decided to revert to the previous version: 24.6.0 esr. Maybe when version 31 or 32 come around I come back to the "latest" version?

  • Cannot open links in new tab without holding Ctrl

    There is only one option i see in preferences for opening sites in new tabs. and it is called "Open links from applications..."
    Even with this checked, by default all links open in a new window, unless I hold down Ctrl while clicking the link.
    There MUST be a way to set ALL links to open in a new tab like every other browser I've used. No??

    Every single time this topic is raised, someone tries to claim there is a work-around, while seemingly forgetting that this is the Safari for Windows forum, and not the Safari for Mac forum.
    This is the single biggest glaring omission from Safari for Windows. It completely defeats the purpose of even having tabs, which makes me wonder what in the world were the developers thinking.
    Safari is a very pretty and fast browser, but I don't know many people who actually use it on a Windows machine due to the inability to simply open links in a new tab without right clicking or holding some extra button down. It's also the only mainstream browser for Windows that isn't capable of this simple task.
    Having watched this issue since Safari 3, without ever seeing any response other then "oh, but just do this work-around" (that only works for Macs), my guess is we'll never see it happen. The funny thing is that when you look at the ini files that can be changed on the Mac version, they are pretty much identical to the Windows version. So, the "fix" not working simply means that whoever was in charge of the part of code related to tabs when porting to Windows must have consciously decided there was no need for the ability to open links in new tabs.
    Proving once again that software engineers can be utterly clueless about the usability of their software.

  • Open links in new tab not window

    Hi I just started using safari and like it so far, the only problem i have is when i click a link it opens in a new window not a new tab. I know you can right click and select open in new tab but is there a way to default when i click it opens in new tab?

    Sorry, that can't be done. But if you buy a Mac, it can be done, so that's an incentive.
    Mulder

  • Visio document imported into a SharePoint VisioWebAccess webpart : open links in new tab or window

    Hello.
    I'm using a SharePoint Server 2010, with a Visio Web Access WebPart.
    With Visio 2010, I created a vdw document which I put in this webpart.
    This works very well, but i have some hyperlinks which I want to be opened in a new tab (or a new window), so that he SharePoint page won't be replaced by the target page.
    So, in Visio, I tried to modify the ShapeSheet of each hyperlink, by setting the "NewWindow" to true. Unfortunately, it does not work : links are replacing the current page.
    I found nothing on the web that could give me a trick to do this.
    Has anyone an idea ?
    Thanks a lot
    _David

    Hello _David C,
    You can create some JavaScript code that will open the hyperlink in a new window. Here is a JavaScript sample that will open the first hyperlink applied to a shape in a new browser window. I have tested it in both IE and FireFox.
    <script type="text/javascript">
    // Declare the global variables for the script, for the Visio Web Access Web Part, the active page in the Web Part,
    // the shapes on the active page, and the shape on the page without hyperlinks.
    var vwaControl;
    var vwaPage;
    var vwaShapes;
    var coldShape;
    // Add a handler to the AJAX Sys.Application.load event.
    Sys.Application.add_load(onApplicationLoad)
    function onApplicationLoad()
    try{
    // Capture a reference to the current instance of the Visio Web Access Web Part.
    // Add a handler to the 'diagramcomplete' event.
    vwaControl= new Vwa.VwaControl(getVWAWebPartID());
    vwaControl.addHandler("diagramcomplete", onDiagramComplete);
    catch(err){
    alert(err);
    function getVWAWebPartID()
    // Search all of the <div> tags on the page to find the div tag with the ID of the VWA Web Part.
    var divArray = document.getElementsByTagName("div");
    var webPartElementID;
    for (var i = 0; i < divArray.length; i++) {
    var node = divArray[i];
    if (node.className == "VisioWebAccess")
    webPartElementID = node.parentNode.parentNode.id;
    break;
    return webPartElementID;
    function onDiagramComplete()
    try{
    // Set the vwaPage and vwaShapes variables to the active page and the shapes collection on that page, respectively.
    vwaPage = vwaControl.getActivePage();
    vwaShapes = vwaPage.getShapes();
    // Set the 'cold shape' for the current active page in the drawing.
    selectColdShape();
    // Remove the handler from the shape selection changed event and then add it back to the event.
    vwaControl.removeHandler("shapeselectionchanged", onShapeSelectionChanged);
    vwaControl.addHandler("shapeselectionchanged", onShapeSelectionChanged);
    catch(err)
    alert(err);
    onShapeSelectionChanged = function (source, args)
    try{
    // Get the array of hyperlinks from the selected shape.
    var vwaShape = vwaShapes.getItemById(args);
    var newURLArray = vwaShape.getHyperlinks();
    var newURL;
    // Check to see whether the shape has any hyperlinks.
    if (newURLArray.length > 0)
    newURL = newURLArray[0].value;
    // Check to see if the hyperlink goes to another page in the drawing.
    if (newURL.indexOf('vdw') < 0)
    // Open the hyperlink in a new window.
    var newWindow = window.open(newURL);
    else
    // Set the active page to the new page.
    setNewPage(newURL);
    catch(err)
    alert(err);
    function selectColdShape() {
    try {
    // Set variables with the names of shapes on the pages that do not contain hyperlinks.
    // Customize the values for these variables to fit your web drawing.
    var coldShapePg1 = "Sheet.6";
    var coldShapePg2 = "Sheet.10";
    // Check to see if the coldShape exists on this page.
    if (vwaShapes.getItemByName(coldShapePg1)) {
    // Set the active shape to the shape without hyperlinks on page 1.
    coldShape = vwaShapes.getItemByName(coldShapePg1);
    vwaPage.setSelectedShape(coldShape.getId());
    else if (vwaShapes.getItemByName(coldShapePg2)) {
    // Set the active shape to the shape without hyperlinks on page 2.
    coldShape = vwaShapes.getItemByName(coldShapePg2);
    vwaPage.setSelectedShape(coldShape.getId());
    catch (err) {
    alert(err);
    function setNewPage(pageId) {
    // Set the active page in the drawing to the page ID passed in as argument.
    var indexOfAmp = pageId.indexOf("&");
    var page = pageId.slice(6, indexOfAmp);
    vwaControl.setActivePage(page);
    </script>
    Note that this code requires that each page have a "cold shape" that does not have any hyperlinks applied to it. In my test drawing, I added a hidden shape (in ShapeSheet, Width = 0, Height = 0) that did not have any hyperlinks. This is because the Vwa.shapeselectionchanged
    event fires when you switch pages, which creates the possibility that the JavaScript code will open a new window when you change pages in the viewer.
    If you are not familiar with the Visio Services JavaScript Object Model, I suggest that you check out the following resources:
    http://blogs.msdn.com/b/visio/archive/2010/02/21/the-visio-services-javascript-mashup-api.aspx
    http://msdn.microsoft.com/en-us/library/ff394649.aspx
    http://msdn.microsoft.com/en-us/library/ff394600.aspx
    I hope that this helps,
    E. Schmidt, Technical Writer
    Microsoft Corporation

  • Safari will freezes opening links in new tabs or windows

    I've noticed that Safari will briefly freeze when opening a link in either a new tab or a new window or when a page is set to automaticly reload after a set time while there are other tabs or windows opened. It does this on all web sites.
    I took a look at everything I could think of, including permissions, used DiskWarrior & Drive Genius to repair,defrag and rebuild directories on my drive, and used Cocktail to clean out all caches nightly. I also have no add-ons installed other than the Flash Player 9 Beta 3 plug-in (but I was having this problem before installing the player). I haven't touched Fontbook (I use Suitcase Fusion). I also know it's not an internet connection speed issue since I have a 15mbps fiber connection coming into my home. I also tested out using Firefox and did not have the problem there.
    Anybody have any other ideas?
    G4 G.E.   Mac OS X (10.4.6)  

    Try the "Reset Safari..." command in the Safari menu.

  • Safari in Windows 7 open links in new tab same window...

    I have searched and seen similar topics, but no one answers. On my mac there is a terminal command that does this, but I use win 7 @ work and was hoping there was a way to accomplish the same thing. I want links to open in new tabs (just like clicking on ctrl + click does) I just don't want to have to press ctrl each time. Is there a preference file that can be modified? Any help would be appreciated.
    Thanks

    I'm afraid I'm not going to be of much help here, Chris.
    I'm not sure if this sort of function is handled by plists or registry settings, or by other components in the preferences/settings machinery.
    The locations of the various preference files and folders on Safari on Windows Seven that I'm aware of are:
    C:\Users\<username>\AppData\Roaming\Apple Computer\Preferences\com.apple.Safari
    C:\Users\<username>\AppData\Roaming\Apple Computer\Safari
    C:\Users\<username>\AppData\Local\Apple Computer\Safari
    If you're good with plist editing, you might be able to find a relevant setting in one of the plists in those locations (although on a Windows machine, not all of the preferences/settings componentry are handled by plists ... there's some database-driven functions too).
    Safari keys are sprayed through the registry. But you might want to start looking in HKEYCURRENTUSER (at a guess) for local-preference-related keys.

  • Middle click not opening link in new tab. Windows 7 Firefox 17.0.1

    Middle click suddenly stopped opening new tabs when links are clicked on. I was running 16, but updated to 17 (latest) to try to fix the problem. I am using a Logitech mouse and keyboard. Worked until this week.
    I really need this working again.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • 11-06-11 Cannot open pdf file on web in firefox after update from Acrobat today

    Adobe Acrobat had an update that I installed today. Later, when attempting to open a pdf form from a website, firefox does not open the file. I verified the settings in Firefox options and it is selected to open pdf in Firefox but it doesn't work. I am on a Windows XP system with 32bit.

    Apparently I was incorrect on the Cisco box, we are using something different now. We use an Extended application server attached to a Meta Call feature server. This is a known issue for them.
    "We have discovered an issue that means that the format of fax PDFs generated on most versions of Metaswitch EAS is incompatible with the latest Adobe Reader (11.0.01).  This means that when your end users upgrade their Adobe Reader to 11.0.01, they will no longer be able to view faxes received from EAS in PDF format."
    The same is with version 10.1.5. I uninstalled 10.1.5 and reinstalled 10.1.4 and the problem went away. No updates for us for now

  • Can't open or start new projects in Logic after updating to Snow Leopard

    I've been having a few problems with Logic 9 since updating to Snow Leopard (10.6.8 )  a couple of days ago.
    Every time i click on "new" and try and start a new project - logic freezes and i get the rotating circle sign and Logic stops responding - eventually i need to force quit and start again.
    Existing projects seem to be functioning fine, although slightly slower than before.
    Does anyone have any fixes for this?! Not being able to start a new project is quite a big problem!
    Thanks
    Mac Pro, Mac OS X (10.6.8), Logic Pro 9.1.8 (32 BIT)

    The mistake was trusting only TimeMachine as your backup/restore.
    If you had your users files also backed up to a external storage drive, or used a bootable clone (since they can be directly accessed) then you could have recovered just your files.
    This is what I suggest you do since TM apprantly botched things.
    1: Visit my user tip here and attempt to fix Snow Leopard in place, the purpose here is to get a booing machine so you can use a working Admin account to copy the user folder containing your files to a regular external drive.
    I suggest #8 and #6, this will reinstall OS X over itself to fix it, then reset the User Password so you can hopefully log in.
    ..Step by Step to fix your Mac
    2: This method will also work, you install Snow Leopard onto a extenral drive and boot from it. This is probally a more safer choice than above, it's certainly less work, but it needs a blank external powered drive.
    .Create a data recovery/undelete external boot drive
    3: Once a copy of your users files is off, then your free to revert your machine back to Snow Leopard.
    The ENTIRE drive must be selected and erased, to set the GUID, erase the RecoveryHD and EFI partitions.
    How to erase and install Snow Leopard 10.6
    Read this to see how OS X 10.7+ changes the User/Library folder, thus can't be used with Snow Leopard.
    How to revert your Mac to Snow Leopard
    How to revert OS X back from Mavericks
    Later read
    Most commonly used backup methods
    Make a bootable clone of your boot drive

  • Right click, open Link in New Tab stopped working

    Right clicking on a link in page and selecting either open link in new tab or window does NOT work. Nothing hapens. Just started the other day. Also cannot use Ctrl and right click. Works in Chrome. Right click and paste, etc work.

    Try a clean reinstall and delete the Firefox program folder before reinstalling a fresh copy of Firefox.
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 18.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible, to cleanup the Windows registry and settings in security software.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will also lose your personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    *(32 bit Windows) C:\Program Files\Mozilla Firefox\
    *(64 bit Windows) C:\Program Files (x86)\Mozilla Firefox\
    Your bookmarks and other profile data are stored in the Firefox Profile Folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    If you keep having problems then also create a new profile.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Open link in new tab is gone!

    When I empty cache, or first boot Safari, I have the option to "open link in new tab"
    however, soon after I lose that option and am left with either "open link" or "open link in new window"
    I want my tab option back!
    what happened?!?

    Hi and welcome.....
    Try troubleshooting your Safari .plist file.
    Quit Safari (Command + Q)
    Open a Finder window. Select your Home Folder in the Sidebar on the left. It has a small house icon. Then open the Library folder then the Preferences folder.
    Move the com.apple.Safari.plist file from the Preferences folder to the Desktop. Now launch Safari. If tabs work as they should, move the .plist file to the Trash.
    Carolyn

  • Open Link in New Window creates an invisible window (visible after restarting).

    When I use the right mouse button menu to Open Link in New Window from a web page it creates an invisible window. That is, I cannot see the window but it is listed in the Firefox Window menu. This newly opened window cannot be selected either by mouse or from the Window menu. However, if I quit and restart Firefox the new window appears as 0 pixels wide (i.e., a 1 pixel wide vertical line) and I can select it (by mouse or Window menu) and zoom it from the Window menu. After zooming I can operate on the window normally.

    Get Firebug and inspect the element. You'll see that it actually is this:
    onclick="javascript:saw.runThis
    URL('saw.dll?PortalProperties&_scid=To2OnvCVXpY&PortalPath=/shared/paint/_portal/PoC\x2520FINS&Done=ManagePortals\x2526Done\x253dAdmin');return false" href="javascript:void(null)" FF doesn't even give you the "Open..." options and all IE versions as of 7 show them but actually don't do anything when you invoke them.
    Edited by: Christian Berg on Sep 9, 2009 10:36 AM

  • I don't want links to open in a new tab or window.

    On any website with links (especially reddit), EVERY time I click a link, it opens in a new tab or window.
    I do not wan't this.
    I just want the link to open in the same tab I'm using.

    Hello,
    Please see the articles:
    * http://kb.mozillazine.org/Browser.link.open_newwindow
    * http://kb.mozillazine.org/Browser.link.open_newwindow.restriction
    You can check your '''about:config''' page to see if maybe an extension or something modified those preferences.
    In order to change your Firefox Configuration please do the following steps:
    # In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press '''Enter'''. The about:config "''This might void your warranty!''" warning page may appear.
    # Click '''I'll be careful, I promise!''' to continue to the about:config page.

  • Using firefox 14.0.1. Loading a link using right-click and "Open Link In New Window", results in new window opening but address bar does not show URL..

    Using firefox 14.0.1. Loading a link using right-click and "Open Link In New Window", results in new window opening but address bar does not show URL. However, if I right click on a link and select "Open Link In New Tab", the Tab shows URL in address bar. So it's working when it's a New Tab but not a New Window.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

Maybe you are looking for

  • Any hope for my low-res photos?

    My husband was a very bad boy. All of our honeymoon photos, and all of our new baby photos were taken at low res (640x480) and I can't get decent quality 4x6 prints. Are there any programs or easy ways to fix the resolution?

  • Error message when starting firefox

    since I've installed the latest update (firefox 4.0.1) I get the following error message when starting firefox: '''Type Error: Components.classes [TvPwm Component_CID] is undefined''' I must then click on OK to get firefox to open => very annoying! I

  • G3 PISMO QUESTIONS

    Hello everyone, I purchased a G3 Pismo for $50 dollars of of E-BAY "untested" and it didn't have a power adapter, so I used the adapter from the wallstreet. It wouldn't start, so I unplugged the PRAM battery underneath the keyboard and BONGGGG it fir

  • Back up of the RAR 5.3 configuration done

    HI all, I want to have a backup of the configuration done in one our systems.So that if some changes are done they can be revert back by applying changes .Any pointers ....

  • Apex Tomcat server is not running

    oracle version :10g apex Version :4.0 OS :unix 1.database server is working 2.apex server down 3.we increased tablespaces 4.checked locked account also. every thing fine . but we cannot able to access server we are receving message unable to found se