Toolbar bookmarks don't create new tab/window although is marked in preferences to do so.

Even though I have the box "Open new windows in a new tab instead" checked, when I click on one of the links in my Bookmarks Toolbar, it doesn't open in a new tab window. I clicked several bookmarks from the toolbar and it happens on all of them.
Also, when I click on different links from different AppleMails, it DOES open a new tab/window.
How can I get the links in my toolbar to recognize the preference chosen to make a new tab/window?

The setting in Tools > Options > Tabs: "New pages should be opened in": "a new tab/window" is for links that specify a target window to open the link.<br />
That option allows to divert such links to a new tab instead of a new window.
For links that do not specify a target use a middle-click or hold down Ctrl and left-click the link or use the right-click context menu to open the link in a new tab or window.

Similar Messages

  • Opening file in a new tab/window

    Hi,
    I have a form (HTML added through a widget) and a number of images on one page. I want each image to be a link to a file, where the images will be seen full quality. however, doing this takes visitors away from the page instead of opening a new tab/window - then clicking back means that the form data is lost - i.e. tickboxes are no longer ticked, etc.
    I cannot use the photo viewing page included in iWeb, as the pictures will then overlap with my form because the enlarged images are loaded on the same page.
    I hope this makes sense, and if anyone could help with opening files in new tab/window it would be great, or a way of opening a photo viewing platform in a separate tab/window directly from a click of one of the photos. I have seen other sites - http://www.aroundthebusch.com/Folio/London%20to%20Istanbul.html
    (this is not mine) where the photo viewing "platform" is IDEAL. I would love something just like this if someone could advise.
    i do not want the photos to link to an external page (which can be opened in a new window) as it would mean me creating separate pages for each picture, and linking them all... no way!
    Also, it would obviously be preferable to be quick to set up, but also to change. I would need to have multiple pages of many photos, each with the viewing facilities so it could not take a long time to set up. I may also need to add/delete some photos, so if all the linking work was done automatically it would be fantastic.
    Any help much appreciated,
    Thanks in advance, James

    If you open it in javascript and specify a height/width or location it should open in a new window.
    window.open("http://www.adobe.com", "_blank", "toolbar=yes, scrollbars=yes, resizable=yes, top=500, left=500, width=400, height=400");

  • I was updated to 3.6 and now I cannot create new tabs. Neither the plus sign or cntl + T will open a new tab. If I right click and choose "open in a new tab", however, the tab opens just fine.

    I've tried restarting the system, but decided not to uninstall/reinstall firefox, just in case I lost all my bookmarks and favorites. The restart did not solve anything. Also, I have colorful tabs add on and it was updated today. I disabled it, but that did not help either.

    Uninstall the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and Firefox that prevents new tabs from being opened.
    There are a couple of places to check for the Ask toolbar:
    * Check the Windows Control panel for the Ask Toolbar - http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4
    * Also check your list of extensions, you may be able to uninstall it from there - https://support.mozilla.com/kb/Uninstalling+add-ons

  • Can't get bookmarks to open in new tab Please Help

    I have downloaded Safari 4 for Windows and I would like to have the bookmarks open in a new tab instead of the same tab that I'm on when I click on the bookmark link on the top left.
    Can anyone please tell me if this is possible?
    Thank you very much for any help.

    Thanks for your relpy but I've already tried these solutions and no joy. I tried them again there just to be sure but still no good.
    In the mean time I installed a plug-in that does this for me. I used My Homepage 1.2 and it's done the business.
    Still don't know what was causing the problem. (And it wasn't a typo, I checked and copied and pasted urls from other locations...)

  • Create new tab in header using badi ME_GUI_PO_CUST for tcode ME21N

    Dear all,
    i have implemented method SUBSCRIBE in ME_GUI_PO_CUST to create new tab in ME21N,
    but the tab is not coming
    following is the code snips, please tell where is the error, or some setting needs to be done
    method IF_EX_ME_GUI_PO_CUST~SUBSCRIBE.
    DATA: ls_subscriber LIKE LINE OF re_subscribers.
    if sy-tcode eq ' ME21N' OR SY-TCODE EQ 'ME22N' OR SY-TCODE EQ 'ME23N'.
      CHECK im_application = 'PO'.
      CHECK im_element     = 'HEADER'.
    CLEAR re_subscribers[].
      ls_subscriber-name = 'Customer-Data'.
      ls_subscriber-dynpro = '0101'.
      ls_subscriber-program = 'SAPLMEGUI'.
      ls_subscriber-struct_name = 'MEPO_SUBSCRIBERS'.
      ls_subscriber-label = 'Customer Data'.
      ls_subscriber-position = 10.
      ls_subscriber-height = 7.
      APPEND ls_subscriber TO re_subscribers.
    ENDIF.
    endmethod.
    Regards
    Sumodh

    Hi...I hv similar requirement.
    I need to show a custom field in the screen for the items.
    I tried using the methods "SUBSCRIBE" and "MAP_DYNPRO_FIELDS" as explained in the sample code.
    Below is my code. I have copied the sample code and changed it lil.
    Method "SUBSCRIBE":
      DATA: ls_subscriber LIKE LINE OF re_subscribers.
    we want to add a customer subscreen on the item detail tab
      CHECK im_application = 'PO'.
      CHECK im_element     = 'ITEM'.
    each line in re_subscribers generates a subscreen. We add one subscreen in this example
      CLEAR re_subscribers[].
    the name is a unique identifier for the subscreen and defined in this class definition
      ls_subscriber-name = subscreen1.
    the dynpro number to use
      ls_subscriber-dynpro = '9000'.
    the program where the dynpro can be found
      ls_subscriber-program = 'SAPLZMMPO1'.
    each subscreen needs his own DDIC-Structure
      ls_subscriber-struct_name = 'ZMM_PO_CUST_SCREEN'.
    a label can be defined
      ls_subscriber-label = text-t01.
    the position within the tabstrib can be defined
      ls_subscriber-position = 13.
    the height of the screen can be defined here. Currently we suport two screen sizes:
    value <= 7 a sevel line subscreen
    value > 7  a 16 line subscreen
      ls_subscriber-height = 7.
      APPEND ls_subscriber TO re_subscribers.
    method "MAP_DYNPRO_FIELDS":
      FIELD-SYMBOLS: <mapping> LIKE LINE OF ch_mapping.
    *- customer fields
      CONSTANTS: mmmfd_cust_01 TYPE mmpur_metafield VALUE 90000000.
      LOOP AT ch_mapping ASSIGNING <mapping>.
        CASE <mapping>-fieldname.
          WHEN 'CLMNO'. <mapping>-metafield = mmmfd_cust_01.
        ENDCASE.
      ENDLOOP.
    I created a function group - "ZMMPO1" and created the subscreen 9000 in that. I placed the custom field in that screen. Tha main program of ZMMPO1 is "SAPLZMMPO1".
    I created a structure also - "ZMM_PO_CUST_SCREEN".
    I want to know whether this is sufficient to display the tab on the screen or am I missing something.
    It is mentioned that the implementation of "ME_PROCESS_PO_CUST" is a pre-requisite.
    could you lemme know the process please.
    Thanks,
    Ram.

  • URL Hyperlinks in Acrobat (and InDesign) open in new Tab/Window

    I really don't understand, why this feature isn't  implemented yet. I tried to google a workaround and found hundreds of posts auround this problem. People where asking how they could do this since 2002 (the oldest post I could find) maybe earlier.
    Please make sure Acrobat - and also InDesign - get this feature in the next version - because people want to have it!!!
    What do I talk about?
    The following feature:
    I include a textlink or and Image-link into a PDF-File.
    Because of the Standard Browser settings most of the people who download a PDF-File will see the PDF in a Browser Tab. Now, if they hit one of the links (included in the PDF) the link opens in the same window/Tab. The PDF is closed. The only way to get back to the PDF is to hit the return button of the browser or reload the PDF. Normally I would like to open these links in a new Tab or Window. But there is no function nor in Acrobat, neither in InDesign to make the Link open in a new TAB/Window.
    I know there was a possibillity  using JavaScript (app.launchURL("http://www.MySampleURL.com/someFolder/somePage.html", true);)
    and this worked. But now because of the security settings of Acrobat X and later it only works if the user changes the settings. So, it's no longer useful because most of the users won't know how to make the links work.
    So at the moment there is NO WAY to make the link open in a new Tab.
    I know If I link another file, it askes me where to open - new window or the same. Why can't you implement it for URL's too?
    Sorry, I searched the whole day to solve this problem. And I can't understand, why Adobe doesn't look at there customers needs (since 2002 or earlier).

    This 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 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

  • Open link in new tab/window problem

    I have the following problem: I have a menu with h:commandLinks and I use faces.config configurations for my navigation. When I choose to open a menu entry in a new window or a new page the old page is displayed and I have to click again on the menu entry in order to navigate to the new page.
    Does anyone know what is causing this? How could I make it work so that the user gets the content of the desired page in the new tab/window?
    Thanks

    Hi,
    sorry for the late response. I have h:messages on the page and I don't get any errors. I try to open the link so: right click on the link and then I choose "Open Link in New Tab" or "Open Link in New Window".
    If I simply click on the link everything works fine and the new page is displayed but when I use the right click menu the same page is displayed and I have to click again to obtain the desired page.
    thanks

  • Tip Message with hyperlink to open in new tab/window

    Hi Guys,
    I have created a FND Message which has the following content:
    some text <a href="https://www.google.co.uk"target="_blank">Click Here</a> some more text
    This is referenced in a custom OAF page as a Tip Message (OATipBean), the text and hyperlink render with no issues, however the hyperlink does not open in a new tab/window (it opens in the current tab) - when you view the source of the page the '...target="blank"...' is not there:
    ... <a href="https://www.google.co.uk">Click Here</a> ...
    Is there a way of getting hyperlinks in Messages to open in new tabs/windows?
    Regards
    Carl
    Message was edited by: CarlHammond

    I think part of your problem might lie in the way you are trying to use your quotation marks.  It appears you are trying to have the single quotes do what double quotes should be doing.
    document.write("<a href='"+imagelinks[ry]+"' target='_blank'><img src='"+myimages[ry]+"' border='none'></a>
    If you want to have doublequotes appear in code as doublequote characters you can try slashing them to have them read literally... \"
    document.write("<a href=\""+imagelinks[ry]+"\" target=\"_blank\"><img src=\""+myimages[ry]+"\" border=\"none\"></a>

  • Why are there only 2 tiles on my new tab window, there were 9?

    There doesn't seem to be any options to add additional tiles to the new tab window and when I drag a bookmarked site to the window, it does not stay there, it just opens the site

    Hello,
    With the latest Firefox update, the number of tiles is now determined on screen size - if you zoom out or expand the window you can have more tiles appear.
    If you want to set a fixed number of tiles, I believe you can do so with the following extension:
    * https://addons.mozilla.org/en-US/firefox/addon/new-tab-tools/
    You can also see '''jscher2000''''s Chosen Solution here: https://support.mozilla.org/en-US/questions/1025414
    It requires the [https://addons.mozilla.org/firefox/addon/stylish/ Stylish] add-on but will automatically shrink the tiles on the page:
    * https://userstyles.org/styles/106326/shrink-new-tab-thumbnails

  • How do I always open email messages as "view message in new tab window"?

    Hi, right now my email displays all my messages in a small top window, and the viewed message in a small bottom window.  Then when this happens if I click the "view message in a new tab window" button on the displayed email, it will get rid of all my messages and just display the main message in a larger window.  I like that.  Problem is I have to click that button for each email that I open, and that can be a hassle when I have to open and read hundreds of email messages.
    Is there any way I can set the default settings of the email to always open email, by default, as "view message in a new tab window"?

    Ok, I looked through the help files and found that if I double click on a message in the main email window (and also click the upper left and upper right arrows to close those windows in the email folder), I almost get to read that entire message in a full window.  That's a lot better to know that.

  • Previously, my new tab window would display all my favourite sites. My wife downloaded a program and now the new tab window is the Ask website.

    I removed Mozilla and reloaded from your website but the Ask website still opens in the new tab window
    I would like to have my favourite websites in the new tab window as they were previously.
    Regards
    Peter

    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
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can open the <b>about:config</b> page via the location/address bar and search for prefs that refer to <b>ask.com</b>.
    You can reset user set (bold) prefs via the right-click context menu to the default value.
    If you do not keep changes after a restart or otherwise have problems with preferences, see:
    *http://kb.mozillazine.org/Preferences_not_saved

  • Disable New Tab Window Feature

    I do not like nor want to use the New-Tab Window feature.
    How can I *permanently* disable this feature?
    A 'config' page change maybe?

    Firefox 13+ versions have an about:newtab page that shows the thumbnails of recent visited websites.
    see:
    *https://support.mozilla.org/kb/new-tab-page-show-hide-and-customize-top-sites

  • Why don't the new tabs show the "normal" tiles page?

    dear mr. or mrs. support,
    i have recently bought a new laptop. i synced it up with my old one but for some reason whenever i open an empty new tab it opens on a page of the bing searchengine which is something i never asked it to do. i can't change this in the preferences and i am sure that nothing i can change in the preferences i think should realate to this as well as in the addons and plugins that i can reach as a layman, differs from those of my old laptop. stil all empty tabs open on the bing search.
    the laptop is an acer which might be relevant as the URL opening in every new tab is: homepage-web.com/?s=acer&m=tab
    so yea acer's pretty much involved in this.
    oh and according to mcaffe the site is untrustworthy/unsecure so thats good.
    I'd really like to get rid of this as it cuts down considerably on my browsing speed and makes me feel slightly soiled by bing and other affiliated parties. As such i would be dreatly appreciative of your help.
    Thanks in advance,
    Simon

    hi mr. zephisto :-)
    this sounds like a problem possibly caused by adware on your pc, so please perform the following steps:
    #please install the search reset addon - it will revert the most common customizations those adware programs do in firefox back to the default: https://addons.mozilla.org/firefox/addon/searchreset/
    #go to the firefox ''menu ≡ > addons > extensions'' & remove any suspicious entries (toolbars, things that you have not installed intentionally, don't know what purpose they serve, etc).
    #also go to the windows control panel / programs and remove all toolbars or potentially unwanted software from there.
    #finally, run a full scan of your system with different security tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes] & [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner], which are specialised in adware and browser hijackers.
    [[Remove a toolbar that has taken over your Firefox search or home page]]
    [[Troubleshoot Firefox issues caused by malware]]

  • On Upgrade (form Office 2010) don't create new .ost file

    Hi there, hope someone can help me.
    Here is my Problem:
    I'm runninng Office 2010 (32Bit Version) on Windows 7 Enterprise x64. I've started Office 2010 with Exchange CacheMode activated. The ost-file is located under D:\Data\%username%
    Now I'm testing Migration to Outlook 2013.
    I'm using OAT to do the following things (regarding only Outlook):
    - Uninstall of Office 2010
    - Install of Office 2013 with using old settings
    -Features:  Configuring "Do not create new ost file during Migration" (we have many subsidiaries with low performance connections - so the old ost should be used after migration)
    Outlook-Profile: Tried all 3 methods (use existing profile | change profile | new Profile)
    At all my tests Outlook creates a new .ost-file under standard directory and don't use  the existing ost-file under D:\Data\%Username%
    After These tests i tried it with gpo "donotcreatenewostonupgrade" - But in this case also a new ost is created.
    In all cases i have 2 Outlook profiles: "Outlook" (with new ost) and "Backup of Outlook" (with old ost)
    Can someone cann tell me a solution for this problem?
    Best regards
    Daniel

    Hi
    As per the information and details provided by you, to migrate lost file from Outlook 2010 to 2013, please follow these steps: -
    You need to use one of the two methods to move the OST file and both involve a new profile. If you are making a new profile, you can use
    ForceOSTPath registry key. Or you can move the ost file and create a new profile in the Control Panel, Mail applet and point it to the new location.
    Copy your ost file to the new location. You can skp this step if you want to create a new ost file.
    Open the
    Control panel, find Mail.
    Click Show Profiles.
    Click Add.
    Type a name for your new profile, click
    Ok.
    Enter your
    username and password and let Outlook find your account information.
    Select the
    Change account settings option, and then click Next.
    Click
    More Settings.
    On the
    Advanced tab, click Outlook Data File Settings.
    Click
    Browse, browse to the ost file, then click Open.
    If you want to create a new ost file, browse to the new location,
    enter a filename, and then click Open, Outlook will create the new ost file.
    Click
    Always use this profile, select the new profile that you created, then click
    Ok to close the dialog.
    Using ForceOSTPath to set the file location
    Open the registry editor and browse to this key. Create a string value named ForceOSTPath and add the path. (You can use variables, if
    you are using group policy to push it out to your users).
    Outlook 2013
    HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook Expandable String Value: ForceOSTPath Value data: full path you want to use
    Outlook 2010
    HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook Expandable String Value: ForceOSTPath Value data: full path you want to use
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G 

  • Safari Roboform new Tab & Window problem

    when i want to create a new tab or window in Safari for Mac, Safari closes with the message that an unexpected error occurred with the Roboform plugin. the same problem occurs when a website wants to open a new tab. any solutions?

    Hi,
    sorry for the late response. I have h:messages on the page and I don't get any errors. I try to open the link so: right click on the link and then I choose "Open Link in New Tab" or "Open Link in New Window".
    If I simply click on the link everything works fine and the new page is displayed but when I use the right click menu the same page is displayed and I have to click again to obtain the desired page.
    thanks

Maybe you are looking for