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.

Similar Messages

  • 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.

  • When I click to open anything I get a box saying open link in new window, open link in new tab, download linked file etc.  When I go to close anything I get hide toolbar, customize toolbar.  It takes  3-5 clicks and it will finally close.

    When I click to open anything I get a box saying open link in new window, open link in new tab, download linked file etc.  When I go to close anything I get hide toolbar, customize toolbar.  It takes  3-5 clicks and it will finally close.

    In Firefox Options / Privacy be sure "Remember download history" is checked. To see all of the options on that panel, "Firefox will" must be set to "Use custom settings for history".
    To find your OS information, on your Windows desktop, right-click the My Computer icon, choose Properties, under System on that small window is info about your OS.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • 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?

  • 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

  • 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

  • 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

  • Safari open link in new tab is gone

    hi i have problem with safari(5.0.5) 10.6.7, from the past  2weeks it is behaving very oddly,
    -.the short menu adressing open link in new tab is not at all appearing , at present i m using on keyboard options
    -when i enter webpage it opens in the other tab instead of the tab i intend to ,the content from other tab becomes the same as the other, also some of ther options from short menu lke save image , save image as also lost .
    -when i reset safari and restart open link in new tab appears in the short menu for 5-10 min (occassionally) and then again the same problem .
    i tried setting preferences , updated software ,
    but nothing works. .can anyone help me plz

    Check Safari / Preferences then select the Extensions tab. If you have any installed, turn that off, quit then relaunch Safari to test.
    And try troubleshooting the Safari .plist file  (preferences)
    Quit Safari.
    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.
    Relaunch Safari. If that made a difference, move that .plist file to the Trash. If not, move the .plist file back to the Preferences folder.
    And try resetting Safari. From the menu bar click Safari / Reset Safari. Select the top 7 buttons, click Reset.

  • 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

  • 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?

  • Put back "Open Link in New Window" first and default, rather than "Open Link in New Tab" in Safari 6.1

    I do not like the order of the context menu changes in Safari 6.1.  I have become accustomed to using "Open Link In New Window" first in the context list, rather than the new "Open Link In New Tab".  I do not wish to use Tabs.  How may I remove this?

    Well, I solved it just after I posted this.  I opened up the Safari Preferences, then went to the TABS section, and set "Open pages in tabs instead of windows: to NEVER", and unchecked "⌘-click opens a link in a new tab".   That set it back to open in new windows.
    Tabs work if I am making quick tabs to refer to something.  Horrible if I want to compare two websites side by side.  So, by disabling the auto TAB function, I'm back to the way I prefer my browser to work, rather than the way something thinks I ought to use it.
    Don't care about having all my browsers behavior the same.  If I wanted that, I would have run those browsers.

  • Safari wont let me open links in new tabs anymore? Please help!?

    On my Macbook, I'm using Safari as my browser.
    Everything was fine until this morning; suddenly Safari will not give me the option of opening links from one page in another tab in the same window.
    For example, if I'm browsing on EBay and want to open a search result in a new tab of the same window, usually when I would right click on my track pad or magic mouse, it would say "Open link in new tab" or "Open link in new window". However, now when I right click, it just says, "Open link" "Open link in new window" and "Copy link".
    I haven't changed any settings or anything on my Macbook whatsoever in the last 3 hours (at least that I'm aware of). Can anyone please tell me how to get this back to normal?
    Also, it seems that when I right click anywhere on a page, I only see the options "back" and "reload" whereas before there was "view source" etc.
    Please help!
    xx0

    Hi,
    From the Safari Menu Bar, click Safari / Empty Cache. When you are done with that...
    From the Safari Menu Bar, click Safari / Reset Safari. Select the top 5 buttons and click Reset.
    Go here for trouble shooting 3rd party plugins or input managers which might be causing the problem. Safari: Add-ons may cause Safari to unexpectedly quit or have performance issues
    Since you are running Snow Leopard, *make sure Safari is opening in 32-bit mode, not 64*. Right or control click the Safari icon in the Applications folder, then click: Get Info In the Get Info window click the black disclosure triangle next to General so it faces down. Select 32 bit mode. Also, (in that same window) *make sure Safari is NOT running in Rosetta.*
    

Web pages now include a small icon or 'favicon' which is visible in the address bar and next to bookmarks. These icons take up disk space and slow Safari down. It is possible to erase the icons from your computer and start fresh. *To delete Safari's icon cache using the Finder, open your user folder, navigate to ~/Library/Safari/ and move this file "webpageIcons.db to the Trash.*
    If Safari still won't let you open links in new tabs, go to the Safari Menu Bar, click Safari/Preferences. Make note of all the preferences under each tab. Quit Safari. Now go to ~/Library/Preferences and move this file com.apple.safari.plist to the Desktop. Relaunch Safari. If it's a successful launch, then that .plist file needs to be moved to the Trash.
    If your forum profile is correct (10.6.1) go to the Apple Menu/Software Updates ...
    Very important to keep your system software up to date.
    If you install the 10.6.3 update make sure and repair disk permissions.
    Quit any open applications/programs. Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Carolyn
    Edited by: Carolyn

  • Open links in new tab rather than new window

    IS there a way to force Safari to open all links that would normally open in a new window open in a new tab instead? I know I can hold the apple key and click the link to have it go to a new tab but I was just wondering if there was a way to make it do that all the time without holding that key?

    You're welcome. Glad I could help.
    Thanks for the and Aloha from Big Island.

  • Open links in new tab not new window.

    Is there a setting allowing me to open a link to another website from safari to automatically open in a new tab without me having to command click the link. I want all links to open in a new tab not a new window.

    Sorry, that's not possible. Links controlled by JavaScript will open in whatever fashion they were designed to, regardless of what the user chooses. The best you can do for targeted links is this to copy and paste this command into Terminal and press Return:
    defaults write com.apple.Safari TargetedClicksCreateTabs -bool true
    Thereafter, any link that has a specific target and is not controlled by JavaScript will open in a new tab. To check whether or not any link is targeted for a tab or window, enable the Show Status Bar from the View menu of Safari and hover over the link before you click on it.
    Mulder

  • Safari 5.0.3, open link in new tab problem

    I have a Mac 10.6.5.
    When I open safari it works fine, then if I right click on a link I see the options open in a new tab, or window (and many other options), when I click open link in a new tab it works, then in the new tab I have a problem: If I right click on a link I can't see anymore the option "open in a new tab", all I can see is, open link, open link in a new window, download linked file and copy link, if I click on open link in a new window it opens a blank tab :s.
    Also right click options are always limited in a new tab and, if I right click on a picture in the new tab I can't see the same options that are normally listed when I fist open a window.
    How can I fix it, is someone else having this problem?
    .

    Hi and welcome......
    Try troubleshooting the Safari .plist file.
    Quit Safari if it's open (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.
    Relaunch Safari. Now launch Safari. If Tabs work as they should, move that .plist file to the Trash.
    Carolyn

Maybe you are looking for