When I select "open a new tab" the tab opens in a different window than the one I'm using. This is release 11.0, and did not happen in 10.0

When I select "open a new tab" the tab opens in a different window than the one I'm using. This is release 11.0, and did not happen in 10.0

Hi,
Please check if '''Open new windows in a new tab instead''' is enabled in '''Tools''' ('''Alt''' + '''T''') > '''Options''' > '''Tabs'''. [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Tabs%20panel Options > Tabs]. If the problem persists, please also check if this happens in a [https://support.mozilla.org/en-US/kb/Managing-profiles new profile]. If the new profile is okay, you can later [https://support.mozilla.org/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile?s=profile&r=1&e=sph&as=s copy the needed personal data] from the old profile. Firefox stores your personal data and settings in [http://kb.mozillazine.org/Profile_folder another location (profile folder)] separate from its [http://kb.mozillazine.org/Installation_directory files/folder]. A new profile would have the default Firefox settings ('''Tools''' ('''Alt''' + '''T''') > [https://support.mozilla.org/en-US/kb/Options%20window '''Options'''], and [http://kb.mozillazine.org/About:config about:config] ), and usually would also be empty of any '''Extensions''' and themes ('''Appearance''') in Tools > Add-ons) and their settings. Also, a new profile would have no previous stored website data/settings etc., ('''Tools''' > [https://support.mozilla.org/en-US/kb/Clear%20Recent%20History '''Clear Recent History''']).
[https://support.mozilla.org/en-US/kb/Profiles?s=profile&r=2&e=sph&as=s Profiles Howto]
[http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder & Files]
[http://kb.mozillazine.org/About:config_entries about:config Entries]

Similar Messages

  • Is it Possible to move the Dropdown Menu to a different layer than the rest of the menu?

    For design reasons I want the dropdown part of my menu to appear as though it is coming out from underneath the banner of the menu. The best way I can figure to do that is to have the dropdown part of the menu (that occurs on rollover) be placed on a separate layer from the main banner menu. Is this possible? I have tried unlocking everything and moving that part to another layer and haven't been successful. Please help this gal out! Thank you!

    I'm still confused as to how I can do this exactly. I have used the tool tip widget to create my own drop down menus. However, I cannot put the trigger point into a different layer than the layer with the drop down menu. How can I make the actual word "accommodations" into the trigger point for this menu? I tried moving the trigger point from the widget over the Accommodations, but in order for the drop down to come out from under the banner, the trigger is under it as well. I've also tried ungrouping them, but I am not successful. Please give me further detail as to how this works!

  • Why is the thumbnail images placed in different order than the xml?

    Hi all!
    This same code I have asked about before, and got excelent help, but this is a different problem so I just start a new thread.
    This is a code that open a XML file, containing a small list of images, and place them as thumbs on the page.
    It kinda work now, but the funny thing is, the order of the thumbs is totally scrambled compared to the xml list, and I can't just see why!
    It has something to do whith when the loaders gets transfered via addEventListener to the placePics function, more than that I cant find out!
    There may be the better way to put up this code. I just feel putting it up in two nested addEventListeners like this is not the best of practice. But I see no other way here...
    package {
         import flash.display.*;
          import flash.events.*;
          import flash.net.*;
          public class thumbHolder extends MovieClip {
                var xmlRequest:URLRequest;
                var xmlLoader:URLLoader;
                var imgData:XML;
                var numberOfChildren:Number;
                var currentImgNum:Number;
                var imgLoader:Loader;
                var imgContainer:Array = [];
                var currentImg:String;
                public function thumbHolder() {
                      currentImgNum = 0;
                      xmlRequest = new URLRequest("images.xml");
                      xmlLoader = new URLLoader(xmlRequest);
                      xmlLoader.addEventListener(Event.COMPLETE, handlePics);
                public function handlePics(e:Event):void {
                      imgData = new XML(e.target.data);
                      numberOfChildren = imgData.*.length();
                      for (var i:int = 0 ; i < numberOfChildren ; i++) {
                           currentImg = imgData.image[i].imgURL;
                           imgLoader = new Loader;
                           imgLoader.load(new URLRequest(currentImg));
                           imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, placePics);
              function placePics(e:Event):void {
                     var oldH:Number = e.target.loader.height;
                     var oldW:Number = e.target.loader.width;
                     e.target.loader.height = 100;
                     var prosent:Number = (e.target.loader.height / oldH) * 100;
                     e.target.loader.width = (prosent * oldW) /100;
                     imgContainer.push(e.target.loader);
                     imgContainer[currentImgNum].x = (e.target.loader.width * currentImgNum) + (currentImgNum * 5) + 6;
                     addChild(imgContainer[currentImgNum]);
                     currentImgNum++;

    Never mind! I finally managed to see what to do. Thanks for the help
    package {
         import flash.display.*;
         import flash.events.*;
         import flash.net.*;
         public class thumbHolder extends MovieClip {
              var xmlRequest:URLRequest;
              var xmlLoader:URLLoader;
              var imgData:XML;
              var numberOfChildren:Number;
              var currentImgNum:Number;
              var imgLoader:Loader;
              var imgContainer:Array = [];
              var currentImg:String;
              public function thumbHolder() {
                   currentImgNum = 0;
                   xmlRequest = new URLRequest("images.xml");
                   xmlLoader = new URLLoader(xmlRequest);
                   xmlLoader.addEventListener(Event.COMPLETE, handlePics);
              public function handlePics(e:Event):void {
                   imgData = new XML(e.target.data);
                   numberOfChildren = imgData.*.length();
                   adToArray(currentImgNum);
              private function adToArray(currNum:Number):void {
                   currentImg = imgData.image[currNum].imgURL;
                   imgLoader = new Loader;
                   imgLoader.load(new URLRequest(currentImg));
                   imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, placePics);
              function placePics(e:Event):void {
                   var oldH:Number = e.target.loader.height;
                   var oldW:Number = e.target.loader.width;
                   e.target.loader.height = 100;
                   var prosent:Number = (e.target.loader.height / oldH) * 100;
                   e.target.loader.width = (prosent * oldW) /100;
                   imgContainer.push(e.target.loader);
                   imgContainer[currentImgNum].x = (e.target.loader.width * currentImgNum) + (currentImgNum * 5) + 6;
                   addChild(imgContainer[currentImgNum]);
                   if (currentImgNum < numberOfChildren) {
                        currentImgNum++;
                        adToArray(currentImgNum);

  • VC++ 2012 am trying to press the same key in 3 different windows at the same time

    I have 3 game clients open and I want to be able to simultaneously press the 1 key in all 3 windows and for the life of me I don't have enough information to do this yet.

    You are generally better off not trying to fake input using WM_Keyxxx messages -- there is a lot of internal state that is difficult or impossible to emulate.
    If you really want to use C++ you probably want to use
    SendInput to generate the key messages.  The bigger challenge is getting the input focus to the right window.  SetForegroundWindow is pretty locked down these days.   You could use SendInput to fake mouse clicks to each of the windows
    prior to generating the key stroke.
    To be honest, based on the extremely limited description you have provided so far, I would use AutoHotkey's
    ControlSend
    command to solve this problem

  • I just opened a new account for my daughter with a different email than mine, but all of my music library is now showing in her music library as well. please help

    Hi, I just created a new account for my six year old daughter. The problem is that my entire music library is now in her music library as well. Please help

    Again many thanks. I have tried to tidy up the folders as per your idiot guide- which term is appropriate for me
    Under iTunes Media though I do not have  folders for Books,iPod Games, Mobile Applications, Movies, TV Shows so I only have  Auto Add to iTunes, Music, Downloads and Podcasts - My question here is is this OK.
    Next - Library files that you mention are there but do not end .itdb
    Next  - in the main iTunes folder followingon from Artwork and Media folders  there is some other  iTunes database stuff like Library Extras, Library Genius, Library and Music Library(xml) all dated 10/02/12 plus MimiPlayer .dll dated 21/02/14 and Set Up Short Cut dated22/03/14  
    AND there is also a Programme Files folder with a sub folder holding file folders called CD Configuration,iTunes Resources, iTunes Help Resources, iTunes Mini Player Resources and Mozilla Plugins all dated 24/03/14 ( when I downloaded the new iTunes) and then a lot of application extension stuff from 2011
    To recap I unistalled the old 32 bit iTunes and installed the new 11.1.5 (64 bit) version over the weekend  SO is any of the old stuff listed above required.
    Outcome right now is that as previously I can only call up the Downloaded music not Podcats or CD copies.
    Regards
    David Pugh

  • How can I make a link a different color than the other links according to the current page?

    Hello.  I have created a navigation bar.  And I would like to style the links to have the current page link a different color than the other links.  For example, if all of the links have a black background, I would like to have the current page link to have a white background.  The reason that I would like to style them this way is so that the visitor knows what page is being visitied.
    I tried different ways but all of them did not show to make any change to the links.  This is what I have so far.  The links work, but all of them have the same color and background.  When on the home page, I would like to have the home page link to have a white background with black letters.  I would appreciate your advice.
    <head>
    ul {
        list-style-type: none;
        text-align: right;
        padding-top: 10px;
        padding-bottom: 6px;
        padding-right: 10px;
    li {
        display: inline;
    a:link {
        color: #FFF;
        background-color: #000;
        text-align: center;
        padding-top: 8px;
        padding-right: 8px;
        padding-bottom: 8px;
        padding-left: 7px;
        text-decoration: none;
    a:visited {
        color: #FFF;
        background-color: #000;
        text-decoration: none;
    a:hover {
        color: #000;
        background-color: #FFF;
        text-decoration: none;   
    a:active {
        color: #FFF;
        background-color: #000;
        text-decoration: none;   
    a.menu:link {
         color: #000   
         background-color: #FFF;
         text-decoration: none;
    </head>
    <body>
    <div class="navigation">
        <ul>
            <li class="menu"><a href="index.html" target="_self">HOME</a></li>
    </body>
    Thank you very much.

    http://www.itworld.com/development/351097/setting-active-menu-item-based-current-url-jquer y

  • I have clicked the Apple  Software Update,a window pops up with Failed to check for updates.The operation couldn t be completed. Operation not permitted.This only occurring now did not happen previously.I am using 10.7.4,on a Mbp Pro.

    I have clicked the Apple > Software Update,a window pops up with >Failed to check for updates.
    The operation could not completed. >Operation not permitted. This is only occuring now.It did not happen
    before.The Apple store in Sydney NSW Australia only reinstalled 10.7.4 Lion yesterday.I have downloaded my
    Itunes song and reinstalled Intego antivirus.Will somebody please advise me what to do.It is 4:03 PM Saturday
    here in Koolewong.
                        richard.

    Uninstall Intego...you don't need it.

  • When I restart Firefox, my pinned tabs open to the page that I last viewed rather than the page that I originally pinned. For example, if I pinned to a local ne

    When I restart Firefox, my pinned tabs open to the last webpage that I viewed rather than the page that I originally pinned. For example, if I pinned to a local newspaper's website, navigate to espn while on the pinned tab and then close Firefox, the next time I open Firefox, the pinned tab goes to espn rather than the local newspaper's site.
    Additionally, the same thing happens if I am reading an article on the pinned tab. When reopening Firefox, the pinned tab goes to the last article viewed.

    Hi don.w,
    That is just the way that pinned tabs are designed. They are meant to be left on the page you want them left on e.g. a web mail account.
    If you want to pin a newspaper then I would pin the front page and then open any article you want to read in a new tab.
    Having said that there is an addon called [https://addons.mozilla.org/en-US/firefox/addon/tab-utilities/ Tab-utilities] which contains an option to automatically revert a pinned tab to the original URL.
    I hope that helps.
    --Edward

  • When i open a new site it always opens up on the side in a narrow window

    I used to click on a site and it would always open up in the full screen. Now when I open a new site it always opens up in a narrow window on the left, 1/5th the size of the full screen, and continues to maintain the previous site in the remainder of the screen (4/5ths). The only way I can create the new site on the full screen is by dragging it over to the 4/5ths screen and then x'g out the narrow one on the left. Why is this happening and how do I eliminate it so that each time I open a new site it will open on the full screen?
    Thank you in advance.

    Are you using a bookmark? There is a little-known feature of bookmarks that can load them in Firefox's sidebar. This allows you to work with two pages side-by-side. To change that setting, right-click the bookmark > Properties, then uncheck the box for "Load this bookmark in the sidebar".
    (You probably didn't set this yourself. If you use a link on a website to have the site add a bookmark to Firefox, due to restrictions on what sites can do, those will always be targeted toward the sidebar.)
    If that's not it, have you noticed any pattern in when this happens?

  • I upgraded to yosemite and iOS 8 in order to record with quicktime. But when I select Record a new movies I immediately get an Operation Could not be completed error.

    I upgraded to yosemite and iOS 8 in order to record with quicktime. But when I select Record a new movies I immediately get an Operation Could not be completed error. When I choose record audio or screenshots, I get a little further, but as soon as I select my ipad as the source I get the same error message.

    You don't need to be a developer for this to work. I get the same error. Just one more thing on the list that make me upset more and more with Apple. Things just don't work out of the box like they used to.
    This new feature was to be included with iOS 8 and Yosemite.

  • TS2518 Help, I had aperture open and working on a image and did not have a battery in and bumped the power off. As a result it will not open my master, it is locked. when I try to open that Library  it says There was an error opening the database for the

    Help, I had aperture open and working on a image and did not have a battery in and bumped the power off. As a result it will not open my master, it is locked. when I try to open that Library  it says There was an error opening the database for the library. I have tried every thing. I updated the other libr but now it will not open the main to update. What do I do?

    Try starting Aperture with the command and option keys held down.  You'll get 3 options.
    Try each, starting at the top, in order, checking after each to see if it fixes the issue.

  • I can no longer print email from my gmail account. when I select "print all" ling a dialog box opens trying to save file & firefox locks up

    I can no longer print email from my gmail account. when I select "print all" link, a dialogue box opens attempting to save as file type .xls. another dialogue box says firefox is preparing file... meanwhile firefox locks up.

    Is your printer selected?
    Or are you printing to XLS?

  • I bought a second 4s, when i try to make new ID, there is a message comes:cannot sign in the maximum number of free accounts have been activated on this iPhone, is there any way to solve this problem?

    i bought a second 4s, when i try to make new ID, there is a message comes:cannot sign in the maximum number of free accounts have been activated on this iPhone, is there any way to solve this problem?

    Sure. You can do it on a Mac at the following website: https://appleid.apple.com/account

  • I downloaded the Acrobat 11 trial and  I can open the product. During the install it deleted the existing print driver and did not install a new print driver so I CAN Not create and print pdf files.

    I downloaded the Acrobat 11 trial and  I can open the product. During the install it deleted the existing print driver and did not install a new print driver so I CAN Not create and print pdf files.

    What OS? Have you tried a repair and updates from the HELP menu? The updates may be the key.

  • When i start up internet with firefox also another sites opens automatically. This is a site which i did not choose. How do i stop this?

    when i start up internet with firefox also another sites opens automatically. This is a site which i did not choose. How do i stop this?

    Go to settings on your iPad select store and look to the bottom of the screen - ensure it is your apple id shown as being logged on - if it not yours click on the apple id choose log out and then enter your details and password.
    If someone has entered their apple id on your ipad and automatic downloads are enabled you can be receiving apps they have purchased.
    Drew :-)

Maybe you are looking for