Click on URL in email, open new tab in browser, BUT stay in same Thunderbird email

There used to be a way to click on a link (URL) in an email that would open a new tab/window in the browser (Firefox), BUT stay in Thunderbird - similar to what Ctrl-Left-click does in Google search results in Firefox.
My work flow is usually to open several links, staying in Thunderbird and then when I'm done - go to Firefox to look at them all. E.g. I get a stackexchange weekly summary email, click on all the topics that look interesting and then, when I'm done selecting them, go look at them in Firefox.
I don't want to be forced to jump back and forth for every link, one at a time. This used to work.
Is there a preference or add-on that will do this - or anything else?

I'm not aware of any complete reference to all preferences that offer a full explanation of what each does, what the Value means and how to use in a problem-oriented fashion.
But the list below does help:
http://kb.mozillazine.org/Category:Preferences
http://kb.mozillazine.org/About:config
http://kb.mozillazine.org/About:config_entries
http://www-archive.mozilla.org/unix/customizing.html#ui
http://preferential.mozdev.org/preferences.html
there is also a postscript module used by eg: linux
http://kb.mozillazine.org/PostScript_Module
Margins are set up here:
File > Page Setup > Margins & header/Footer
or via File > Print Preview > Page Setup button
Helpful hints:
if you have Margins (millimeters)
and set eg: Bottom margin as 20.0
then look in config editor, you will see:
print.printer_XX.print_margin_bottom; Value = 0.787500023841858
This seemed odd at first. All Values in config were being converted to inches represented in a decimal format.
If you ever need to change the margins from millimeter to inches:
Print.printer_xx.print_paper_size_unit Value: = 1
Change the Value to 0 (zero) to get inches
If you change the Value to 0 for inches and then reopen:
File > Page Setup > Margins & header/Footer
you will see the Bottom margin has auto changed from 20.0 (mm) to 0.8 (inches rounded up), so although the display is different in File > Page Setup > Margins & header/Footer tab, the actual information in config preferences remains unchanged as it is saved in decimal inches format used by US as default.
if using millimeters then the paper size would be A4 210 x 297 mm.
Although looking in the config preferences it will say paper width 8.50 and paper height 11.00.
Usually, you can change the paper size when you select to Print and look in Print Properties. I'm in UK and using millimeters so get A4; the US uses Letter 8½ x 11 inches.
So I can see how it could be confusing to anyone using millimeters and then sees, what appears like wrong data in preferences.

Similar Messages

  • A java virus disabled the click + at the left to open new tab. I have reinstalled firefox but the problem is not fixed. what do i do to fix this?

    A java virus disabled the click + at the left to open new tab. I have reinstalled firefox but the problem is not fixed. what do i do to fix this?
    admins of forum feel free to edit post.

    Try disabling the Ask Toolbar extension.

  • Hit enter in url bar and opens new tab automatically

    is it possible, that when i hit enter in the address bar, it must automatically open up a new tab with that adress, just like AM browser has?

    you can open tab easily with CTRL+T
    you can select URL and Click it with + CTRL,it will autometically open with a new tab

  • Firefox won't open new tabs when I click, also he doesn't open new tabs when I use CTRL+T. Any solutions?

    When I want to open a new tab, firefox doesn't do it. The problem is the same when I use CTRL+T. So I can't open any new tabs.
    Nothing seems to work: restart the pc, closing firefox,...

    Uninstall the '''''Ask Toolbar'''''. It can cause that problem.
    *http://support.mozilla.com/en-US/kb/Uninstalling+add-ons
    *http://support.mozilla.com/en-US/kb/Cannot%20uninstall%20an%20add-on
    *http://kb.mozillazine.org/Uninstalling_toolbars
    If that does not solve your problem:
    *See --> [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes Troubleshooting extensions and themes]
    *See --> [http://support.mozilla.com/en-US/kb/Troubleshooting+plugins Troubleshooting plugins]
    *See --> [http://support.mozilla.com/en-US/kb/Basic+Troubleshooting Basic Troubleshooting]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *'''''Adobe Shockwave for Director Netscape plug-in''''': [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *'''''Adobe PDF Plug-In For Firefox and Netscape''''': [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *'''''Shockwave Flash''''' (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *'''''Next Generation Java Plug-in for Mozilla browsers''''': [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • T431s Middle click not working (open new tabs in browser)

    Hi, I have a brand new t431s here, and I can not get the track point working as expected (and as on all previouse thinkpads since the i-series):
    expected behaviour:
    middle-click on link -> new tab
    middle click&hold and trackpoint-> scrolling
    I am not able to find the setting which enable this behaviour.
    Any help would be appreciated.
    cheers
    schmaud

    What OS?

  • BUG: navigateToUrl always opens new tab in browser, also when window parameter is specified

    I have a problem navigating to a Url in the default browser in an Adobe Air project.
    air.navigateToUrl(request, windowName) launches the browser and displays the page, but it displays a new tab for every request.
    Here is a very simple example that shows the problem:
    Flex:
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx">
    <fx:Script>
    <![CDATA[
    import flash.display.Sprite;
    import flash.net.navigateToURL;
    import flash.net.URLRequest;
    protected function button1_clickHandler(event:MouseEvent):void
    NavigateToURLExample();
    public function NavigateToURLExample():void {
    var url:String = "http://www.adobe.com";
    var request:URLRequest = new URLRequest(url);
    try {           
    navigateToURL(request, "testWindow");
    catch (e:Error) {
    // handle error here
    ]]>
    </fx:Script>
    <fx:Declarations>
    </fx:Declarations>
    <s:Button x="169" y="165" label="Button" click="button1_clickHandler(event)"/>
    </s:WindowedApplication>
    HTML:Javascript:
    <html>
        <head>
            <title>navigateToURLTest</title>
            <script type="text/javascript" src="lib/air/AIRAliases.js"></script>      
        </head>
        <body>    
            <a href="#" target="testp"  onclick="javascript:air.navigateToURL(new air.URLRequest('http://www.adobe.com'), 'TestWindow');return false;">Same Tab</a>
        </body>
    </html>
    How can I open the url in the same window/tab?
    Message was edited by: Karel VDH

    Hi..
    I am struck with the same issue as well.
    It works for few sites like "http://www.adobe.com" and "http://www.google.com", but most of the sites open up in a new window, even if I specify custom name, like:
    navigateToURL(new URLRequest("http://www.britishairways.co.uk"), "MyWindow");
    Also tried through ExternalInterface viz:
    ExternalInterface.call("window.open", new URLRequest("http://www.britishairways.co.uk"), "MySameWindow", "");
    Please reply whether it is a bug, or there if there are any alternative approaches.

  • CP 4 not opening new tab in browser

    Without actually seeing it myself, here is a problem my client has described.  5 or 6 modules are on a website (SiteBuilder) with links. When a user clicks on a module link, the module opens and runs fine. But when the user closers the module, they are forced to log back on to the website. I assume the problem is that when the user clicks the module link, that instead of another tab opening in the browser, it opens inside the same page.
    Does anyone know if there is a script/code that I can add to the modules to always open either another tab or browser window?
    Thanks in advance!
    JT

    Hi there
    My guess is that any configuration of that sort would occur at the SiteBuilder end. Perhaps there is a forum dedicated to SiteBuilder where you might ask?
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • My safari closes when I click the plus sign to open new tab what do I do??

    How do I fix this????

    Go to Settings>Safari>Clear History, Cookies and Data.
    Now close Safari. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the Safari app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Then reboot the iPad and try again.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • IE 11 open new tab opens new window, clicking open new tab opens black page in same tab

    Hi I have a problem with IE11 on Windows 8.1 Desktop mode which is driving me crazy.
    When i click on the open new tab button it will open in the same tab in the same window and you cant go to any website and the website on where on's address is still in the address bar.
    Right click a link and select open new tab most of the time opens new window with long pause.
    I have tried everything to fix this even re installing windows, but the problem persists after re install as i think its attaching itself to my Microsoft account.
    I have disabled all add-ons run virus and walware scans reset IE to defaults removed and re-installed IE all to no avail!
    Any help would be much appreciated.

     tried everything
    http://support.microsoft.com/en-us/kb/2574731
    (BING search for
        blank tab regsrv32 ieproxy site:support.microsoft.com
    Robert Aldwinckle

  • Have recently updated firefox. Previously, opening a new tab, cursor would be in google's search field, as google was my home page; now when I open new tab, cursor appears in url bar; this is bugging me a lot. How do I fix this setting?

    cursor in URL bar when opening new tab; setting for this?

    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.com/kb/Safe+Mode

  • Safari slow opening new tabs

    Hi,
    After a fresh install of yosemite I noticed that safari is really slow (about a 3-5 seconds lag) opening new tabs, not everytime but most of the time (around 50%). This behavior also occurs when I focus the url bar.
    It happens using the mouse and also using the keyboard shorcuts (⌘+T and ⌘+L respectively).
    First thing I tried was disabling Safari Sharing on the iCloud settings but it didn't work. I also tried all of the usual suspects: deleting caches, cookies, reset safari, etc... As I said it happened from the first minute after a clean install of yosemite.
    Any help would be appreciated. Thank you.

    I have the exact same problem and it kills usability. I filed a bug with Apple on bugreport.apple.com (problem ID 1882855). Hopefully we'll hear from them.

  • Mac user OS 10.6.8 Firefox 6.0.2. Click the Firefox icon in dock, program does not open new window. Type cmd+N to open new window, cmd+T to open new tab or cmd+L to enter URL, nothing happens. What causes this, and what can be done?

    Mac user OS 10.6.8 Firefox 6.0.2. Click the Firefox icon in dock, program does not open new window. Type cmd+N to open new window, cmd+T to open new tab or cmd+L to enter URL, nothing happens. What causes this, and what can be done?

    It's strange. The problem apparently resolved itself after I ran TechTool on it. When I clicked on Firefox last night, I had no problem opening a window. Thanks for your help. (As to your previous post, the focus was on Firefox and neither the speed keys nor the menu bar would open a window or tab of allow me to enter a URL to open a window. Strange!)

  • When opening new tab, how to make me able to type in the adress bar directly without clicking on it? -- (about:config reset and add-on doesn't work)

    Hi all,
    Need a help relating New Tab on Mozilla.
    I want to be able to directly type in the address bar everytime I open a new tab in Mozilla, without clicking anything. To be clearer, it means that everytime I open the new tab, the blinking cursor is already on the address bar.
    What's happening right now is everytime I open new tab, the cursor is not placed anywhere--not on the search bar on the page, not on the address bar. I should put the cursor somewhere to do something.
    I tried using the about:config reset (1) and installing custom new tab (2), but both do not work.
    When I tried the about:config reset the Reset button is not highlighted (I assume it means it's default already), and the Custom New Tab doesn't yield in different result.
    What confuse me is 2 days ago my Mozilla works just fine. Everytime I opened a new tab, the blinking cursor was on the address bar and I was able to type directly.
    Thank you and appreciate the help!!
    Note:
    (1) about:config reset:
    - Type about:config into the address bar and press Enter.
    - To bypass the warning, press the big button labeled "I'll be careful, I promise!".
    - In the search box, paste browser.newtab.url
    - In the search results, right-click browser.newtab.url and choose Reset.
    (2) Custom Add On reset:
    - Install Custom New Tab. = https://addons.mozilla.org/firefox/addon/custom-new-tab/
    - Open the Add-ons Manager (Ctrl+Shift+A; Mac: Command+Shift+A), then the Extensions category.
    - Next to Custom New Tab, click the Options button.
    - Set whatever page you want to open in each new tab (about:newtab is the default; about:home is the default home page), and make sure "Place focus in URL bar" is not checked.

    ''philipp [[#answer-669209|said]]''
    <blockquote>
    ok, as a follow up i'd recommend disabling half of the addons & restarting the browser - if the problem continues disable the other half & continue until you've narrowed it down to the culprit...
    </blockquote>
    Hi Philipp,
    I read the link you copied on the first post and also tried your recommendation above. None seem to work. Even if I disable all add-ons, the problem still persists.
    One other info, this problem seem to appear after I installed several program yesterday. These programs apparently installed other programs that set my homepage and main search engine to a particular website. But I installed all of these programs already. Would that be a cause of the problem?
    Thanks.

  • Cannot open new tabs or load new sites by typing in URL.

    When I click on the "+" button to open a tab (or from the File menu) nothing happens. Also when I try to go to a new web page by typing in the URL, nothing happens. A new web page and tab only opens by clicking on a (Google) search result item. Re-starting Mozilla does not help.
    Note: Printing data from Troubleshooting Information below deleted to limit characters to less than 30.000.

    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.
    You can use one of these to start Firefox in <u>Safe mode</u>:
    *On Windows, hold down the Shift key while starting Firefox with a double-click on the Firefox desktop shortcut
    *On Mac, hold down the Options key while starting Firefox
    *Help > Restart with Add-ons Disabled
    *https://support.mozilla.org/kb/Safe+Mode
    If it does work in Firefox Safe-mode then disable all extensions (Tools > Add-ons > Extensions) and then try to find which is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    See also:
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • I just updated to Firefox 17.0.1 and now I can't click on a bookmark to open it or open new tab when clicking new tab button.

    In FF 17.0.1 I have several bugs to mention. I am only able to open bookmarks by right clicking them and selecting Open In New Tab from the drop down menu. I am unable to open a new tab by clicking on the new tab button or by clicking open new tab from the FF drop down menu at top of browser. Also, none button work in FF, such as Home, Back, Forward, or refresh. This is so aggravating!!

    After I posted this, I restarted with add ons disabled and it worked..deleted a cpl of addons for compatibility checking and that fixed it.

Maybe you are looking for

  • How do I generate a report (Active Vendors -- Vendor Code)?

    Dear SAP Friends, May I ask how do I generate a report showing all active vendors with their corresponing vendor code in SAP? Thank you very much in advance, Albert

  • Swap image not working in IE on server

    Hi suddenly having problems with this - whether it's Win SP2 or what I'm not sure. swamp image works fine locally (off a network LAN drive) but not on the live server. I have preload images set, not restore on mouseout. The setup is an imap with a ho

  • Why is my iTunes in dollars?

    Why is my iTunes in dollars?

  • DLSW Ethernet Redundancy - Master/Slave preemptive

    I am wondering if there is a way to control the behavior of the master dlsw router if it fails and circuits are established on the slave dlsw router. The lab testing I have done shows that once the master dlsw router is back online, the circuits tear

  • Reason for Deadlock Insert Select on same table

    I have obtained the deadlock graph. However, I still don't understand why a deadlock occurs. Can someone explain it to me? Thanks in advance. deadlock-list deadlock victim=process3a59438  process-list   process id=process3a58c58 taskpriority=0 loguse