TB Automatically Opens Bing Settings and Add-On Settings at Startup. How to make it stop?

Heyo,
So I'm punting as tech support in my office, and don't use TB myself. What's happening is on startup, a Bing settings page and the TB add-ons page are loading in tabs in addition to the inbox tab.
X'ing the tabs individually does remove them, but I need to make them stop loading at startup for the sanity of this older gentleman.
There are no modifiers on the shortcuts to open the program, no homepages listed in options. What am I missing?
Thanks buckets for any input.

The only time that this gets messed up is when they run cleaner software like CCleaner that deletes settings because it thinks it knows best. You can set CCleaner to leave the Thunderbird, or other software, files along to stop that issue.
Glad you got it working.
The other common issue is people complaining about all the message tabs accumulating across the top of the screen and moving the Inbox tab out of view. This is because they open messages in tabs and never close them. You can right click one tabs and select Close Other Tabs and then use the x to close the last one. Then explain to them how to close tabs after reading messages. :)

Similar Messages

  • With "New" twitter, as of a week or so ago, it constantly refreshes and I can't figure out how to make it stop. I wonder if it's tied to an add-on, plug-in, or extension? (FWIW, IE8 does not do this)

    Within the page for New Twitter, it is constantly refreshing the page. If I'm reading, it refreshes and I lose my place. If I'm typing a tweet it refreshes and deletes everything I've typed. I do not have any add-ons installed; basic list of extensions (Java Consoles; multiple versions), though I MS .net framework 1.1 has had trouble updating and is currently disabled and so is my Norton AV toolbar.
    Again this only started happening 7-10 days ago, and I wonder if there was an update to Firefox or an extension/plugin perhaps causing this. Have had to resort to using Twitter on IE8. :(

    Does it help if you make the Find bar (Ctrl+F) or the Add-ons bar (Ctrl+/) (Firefox > Options or View > Toolbars) visible?

  • When I work in DPS, InDesign starts opening old documently by itself. Does anyone know how to make it STOP?

    My InDesign opens a bunch of old documents almost every time I start working with DPS panels. I was told it was a bug and to change the names of docs but I work with HUNDREDS of docs on a large server that others access so this is not practical. Does anyone have suggestions?

    Not that I know of but there may have been objects (picture boxes or text) that was copied from those documents.

  • Photoshop open multiple image and add different texts

    Hi All,
    Hope you are all doing great. I just started doing photoshop scripting due to the requirement which I will mention in detail below.
    My scripting is knowledge is very basic so I was hoping you guys could be able to help me out with this.
    The requirment is that I have 100's of images which needs to be opened in photoshop and add text based on the image name then save the image as JPEG at 70 quality. For example:
    I have images named as below in my desktop folder,
    Image1.jpg
    Image2.jpg
    Image3.jpg
    Image4.jpg
    Image5.jpg
    Image6.jpg
    Image7.jpg
    Image8.jpg
    Image9.jpg
    Image10.jpg
    For the script, I think the easiest way is that if I define what image name are:
    image[1] = Image1.jpg
    image[2] = Image2.jpg
    image[3] = Image3.jpg
    image[4] = Image4.jpg
    image[5] = Image5.jpg
    image[6] = Image6.jpg
    image[7] = Image7.jpg
    image[8] = Image8.jpg
    image[9] = Image9.jpg
    image[10] = Image10.jpg
    and for text I have done this:
    text [1] = Image1
    text [2] = Image2
    text [3] = Image3
    text [4] = Image4
    text [5] = Image5
    text [6] = Image6
    text [7] = Image7
    text [8] = Image8
    text [9] = Image9
    text [10] = Image10
    So everytime when I run the script image1 will be added to the photoshop and the text name Image1 will be added (For this I think defining layer name would be better so I will gave "Imagetext").
    Then the image will be saved on a specific location on my desktop.
    I have all this plan on what I want to do but I don't know how to write the script using photoshop API and my limited javascript coding.
    So if you guys could help me out with this, that would be awesome. Hope to hear on this soon.
    Kind Regards,
    Zoogle

    Hi Ghoulfool,
    Thank you very much for taking your time in looking into my question.
    Also thanks for the script you've provided. Your script works perfectly close to my requirements but there are few minor addon that I would like to request please.
    My apologies for not being very clear
    First of all to answer your questions:
    Image size varies but mostly between 1200-1000 pixels.
    Good question regarding text size, I would like to control the size of the text based on how long the character length is.
    Position varies so I would like to adjust it manually or if I could definie within the script that would be superb.
    The images open in new window rather that staying in the currently opend psd, I have other layers which I need to keep it as static and use the script to add the image between these layers.
    I wouldn't mind if all these 100's of images stay in current psd as layers.
    I was hoping if possible I would have more control over what text I would like to put on the image.
    Below is the example , I am sure the code below is wrong but with my limited scripting that's all I could come up with
    This is the code that would be controlling what text/text size appear on images based on the i value:
    var publicPath = 'C:/Users/Username/Desktop/imagesavetest';
    var outputPath = publicPath;
    var imagetext = new Array();
    imagetext[0] = "imagetext0";
    imagetext[1] = "Apple";
    imagetext[2] = "imagetext2";
    imagetext[3] = "Pineapple";
    imagetext[4] = "Orange";
    imagetext[5] = "imagetext5";
    imagetext[6] = "imagetext6";
    imagetext[7] = "Berries";
    for (var i in imagetext) {
      textLength = imagetext[i].length;
      saveMyFile = imagetext;
      theText.contents = imagetext[i].toUpperCase();
      switch (true) {
        case textLength <= 9:
          theText.font = "Arial";
          theText.size = 38;
          theText.contents = imagetext[i].toUpperCase();
          break;
        case textLength > 9 && textLength <= 12:
          theText.font = "Arial";
          theText.size = 28;
          theText.contents = imagetext[i].toUpperCase();
          break;
      saveAsJPEG(outputPath,  saveMyFile);
      counter++;
    And to open files from the user defined location:
    var inFolder = new Folder("C:/Input")
    var image = new Array();
    image[0] = "image0.jpg";
    image[1] = "image1.jpg";
    image[2] = "image2.jpg";
    image[3] = "image3.jpg";
    image[4] = "image4.jpg";
    image[5] = "image5.jpg";
    image[6] = "image6.jpg";
    image[7] = "image7.jpg";
    for (var j in image) {
    if j=0 look for i=0 and add i value as text
    To simplify i'll open psd with layers, add image between existing layers and add text based on the text name which we defined in script.
    Sorry for long post, but hope I have not made this simple process confusing.
    Please do let me know if you have any questions. Hope you hear from you soon and Thanks for your time.
    Kind Regards,
    Zoogle.

  • I like the feature of the PDF being opened on the new tab on firefox browser windows. But the newer version (3.6 or 4.0) will automatically open PDF in a pop up adobe apps. How do I keep the PDF open on the new tab as before? thank you

    I like the feature of the PDF being opened on the new tab on firefox browser's windows. But the newer version (3.6 or 4.0) will automatically open PDF in a pop up adobe apps. How do I keep the PDF open on the new tab as before like the 3.5 ver.? I want the PDF opened in the new tab rather than in the Adobe's app's pop up window. Could you help?
    thank you

    '''I fixed mine by removing the Ask.com extension.'''
    Tools
    Add-ons
    Settings icon
    View Recent Updates
    Ask.com '''DISABLE'''
    Running FF 8.0 on Windows 7 (64-bit)

  • After the latest update, all my apple products reverted to an old icloud account.  As it no longer exists, I cannot get into it to delete it and add the correct id.  How can I change this, especially on my Macbook pro?

    After the latest update, all my apple products reverted to an old icloud account.  As it no longer exists, I cannot get into it to delete it and add the correct id.  How can I change this, especially on my Macbook pro?  There is no p/w related to it and even though I tried to reset "password" it won't allow as the id does not exist, neither does the email associated with the old id.  How do I switch it to a newer id?

    It's all rather odd because the old account cannot 'no longer exist' - if you don't have the correct password you won't be able to get into it, but you can't actually delete an iCloud account from the server.
    I'm afraid you will need the services of iCloud Support. If you currently happen to have AppleCare, either because you recently bought Apple hardware or have paid to extend the inititial period, you can contact them here:
    http://www.apple.com/support/icloud/contact/
    You will need the serial number of the covered hardware.
    If you are not covered by AppleCare, then - in common with other free email services - there is no free support and you may be asked to pay a fee.

  • PS CC - I have a B/W background which I flattened - Then, change to RGB and add an RGB color graphic - print out makes background a greenish color - Can't figure out how to adjust.

    PS CC - I have a B/W background which I flattened - Then, change to RGB and add an RGB color graphic - print out makes background a greenish color - Can't figure out how to adjust.
    Thanks,
    Dave

    If the grayscale looks ok on screen, you are probably not setting up your print correctly. What OS? What printer?

  • I have an 8500a how, once I select the apps I want and add to the printer. How do i get them to wor

    I have an 8500a how, once I select the apps I want and add to the printer.  How do i get them to work? And is it always this slow....

    Hey jmknights!
    While I can't speak to how quickly the apps will work, I may be able to help you with how they work. Once you have the apps added to the printer you would select the app you want to print from on the printer's front panel. Once inside the app, select what you want to print and if all goes as it should, the printer should begin printing the requested information within a few seconds.
    Hope this helps!
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Accidentally I deleted the automatic connection of iPhone and I chused instead explorer. How can I undo this. I have Windows8. Thanks in advance.

    Accidentally I deleted the automatic connection of iPhone and I choosed instead explorer. How can I undo this. I have Windows8.
    Thanks in advance.

    Hi there gali2012!
    I believe I have an article that will help you troubleshoot this issue:
    iOS: Disabling digital camera notification in Windows
    http://support.apple.com/kb/TS1500
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • HT203128 iTunes 12.1.050 - Rollback: Updated from 12.01, now I cant't change track numbers and add additional data fields. How can I roll back to the previous version? @Apple, I want a $100 gift card for the inconvenience.

    iTunes 12.1.050 - Rollback: Updated from 12.01, now I cant't change track numbers and add additional data fields. How can I roll back to the previous version? @Apple, I want a $100 gift card for the inconvenience.
    - it's all said in the title. I can't understand why the developers turn things bad ... risking loosing Apples valuable customers.
    More examples needed? (check out the communities and the reviews)
    - OSX: Maverick to Yosemite = not recommended (check it out > http://roaringapps.com/apps)
    - iPad: older versions as iPad2 should not upgrade to iOS7/8 (it's not supporting its hardware accordingly, it's designed for the latest hardware)
    - iTunes (it's possible to rollback to 10.7 - 11.4, but you need to breech OSX system security framework)
    - Pages (was a real alternative for many of us, each update reduced features and created incompatibility to older work files)
    The list could easily extend to ...

    You can offer Apple feedback here: http://www.apple.com/feedback/
    as for "
      "@Apple, I want a $100 gift card for the inconvenience"
    dream on.

  • I have an ipad air and I'm trying to play a video I purchased from iTu and it says cannot open not supported and the codec says protected. How do I fix?

    I have an ipad air and I'm trying to play a video I purchased from iTu and it says cannot open not supported and the codec says protected. How do I fix?

    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
    Phone: 800-275-2273 How to reach a live person: Press 0 four times
    Hours of Operation: Mon-Fri: 9am-5pm ET
    Email: mailto:[email protected]
    How to report an issue with Your iTunes Store purchase
    http://support.apple.com/kb/HT1933
    https://reportaproblem.apple.com/
    iTunes Purchase Problems: How to Report a Problem to iTunes Support
    http://tinyurl.com/7tscpa7
    iOS: Troubleshooting applications purchased from the App Store
    http://support.apple.com/kb/TS1702?viewlocale=en_US&locale=en_US
    How to Get a Refund from the App Store
    http://gizmodo.com/5886683/how-to-get-a-refund-from-the-app-store
    Getting Refunds for your iTunes Store Purchases
    http://www.labnol.org/software/itunes-app-store-refunds/13838/
    Canceling a Digital Subscription
    http://gadgetwise.blogs.nytimes.com/2011/10/14/qa-canceling-a-digital-subscripti on/
     Cheers, Tom

  • HT5446 If I buy a mac mini with a fusion drive and add windows using boot camp, can I make the SSD function be dedicated to the windows partition?

    If I buy a mac mini with a fusion drive and add windows using boot camp, can I make the SSD function be dedicated to the windows partition?

    Additional information from Linc's post. Basically, only one additional partition can be added to a Fusion Drive and it resides on the HDD.
    Do computers that come with a Fusion Drive support Boot Camp?
    Yes. Use the Boot Camp Assistant to create a Windows partition and install Boot Camp. The Windows partition will exist on the hard disk drive, not the Flash drive, and is not part of Fusion Drive Logical Volume Group. 3TB Fusion Drive configurations need to update to OS X Mountain Lion v10.8.3 or later to install Windows 8. See iMac (27-inch, Late 2012): Boot Camp alert with 3T hard drive for more information.

  • Itunes keeps opening on my computer every 5-10 minutes!! please make it stop!

    I don't know if it's Job's ghost, or what...  But I recently got the iphone 4s and now my itunes keeps opening up every 5-10 minutes!  Can someone please tell me how to make this stop??  THanks!

    the latest iTunes version 9.0.3.15 and it just will not close down. Every time I click on the X to close it or even go to File and then select close, it re openes!!
    Do you have any third-party add-ons/plugins installed for your iTunes, ajay? If so, what are the called and what version do you have?

  • I reset my phone and it now receives calls that were meant for my husband. I know how to fix this with messaging and facetime, but can't seem to find how to make it stop with the calls. Please help.

    I reset my phone and it now receives calls that were meant for my husband. I know how to fix this with messaging and facetime, but can't seem to find how to make it stop with the calls. Please help.

    It may be due to Continuity
    The following quote is from  Connect your iPhone, iPad, and iPod touch using Continuity
    Turn off iPhone cellular calls
    To turn off iPhone Cellular Calls on a device, go to Settings > FaceTime and turn off iPhone Cellular Calls.

  • Something keeps trying to download on my mac and I don't know what it is. It is not in the apple store and just comes out nowhere and request for my password to download something and I don't know what it is. How to make this stop?

    Something keeps trying to download on my mac and I don't know what it is. It is not in the apple store and just comes out nowhere and request for my password to download something and I don't know what it is. How to make this stop? It pops up every single day.

    Erica,
         I can, with 99.99% certainty, tell you that you are absolutely right in not wanting to download or install this "Helper," whatever it is (but we can be equally certain it would not "help" anything).
         I cannot comment as to Oglethorpe's recommendation of 'adwaremedic'; I am unfamiliar with it.  His links to the Apple discussion and support pages warrant your time and attention.
         It might be really simple -- Trying looking in your Downloads folder, trash anything that you don't know with certainty is something you want to keep, and then Secure Empty your Trash. Then remove the AdBlock extension, LastPass, and Web of Trust extensions to Safari and re-boot. If the issue goes away, still be extraordinarily careful in the future.
         Unfortunately, it's probably not going to be that simple to get rid of, in which case I'd then try the line by line editing in HT203987. 
         I have no further suggestions (other than a complete wipe and re-install...but that's a pain because trying to restore from Time Machine would simply ... restore the Mal).
       For the rest of us, please post when you find a solution.
         Best.
         BPW
      (Also, try to edit your second post -- black out your last name on the screenshot and re-post it for others)

Maybe you are looking for

  • I am having a strange problem starting up

    im not sure if this is the correct category for this sort of problem...but anyway. Often when i start up my computor, there is a strange repetitive clicking sound, and my computer ceases to start up. this also happens at random times while i am using

  • After Effects CC 2014 only using 30% of CPU when rendering

    I've scoured the internet for details but there's surprisingly little help when it comes to After Effects and performance. Basically, I built a new workstation awhile ago with the hopes of really speeding up my video editing as I was starting to do a

  • ** Use of 3 values in 'Receiver From' property of the BPM send step

    Hi Friends, Still I am not clear the exact use of 'Receiver From' property of the Send step in BPM. This property is having 3 possible values: 'Send Context', 'Receivers List', & 'Response to Message'. What's the purpose of each value ? In what situa

  • FTP Receiver without directory change

    Hello, we have to upload data to an FTP server which does not allow directory changes. Problem is that the directory field in the FTP receiver communication channel is mandatory so we get an error message. Is there any workaround for this? Thank you.

  • Broadcast Live Webcam to public website

    I am looking for some support information on setting up a webcam for my restaurant. I have Flash Media Encoder working fine on the local machine in the restaurant. I currently have Flash Media Server running there also. I am trying to find some suppo