Why does Firefox 4 and 5 not ask anymore, it should safe all open tabs before quitting the program as it did in the 3.x versions?

Is there a way to make Firefox 5 ask when quitting the program weather it should safe all open tabs for the next time. In versions 3.x it always asked and reopened the same tabs on next program start.
I could not find the preference to get this very useful feature back or did the programmers take it out of the new versions?

See item #31 (#tabslost) in the following
-- you can turn option on at end and then tabs will be restored whether you do or don't or don't restore tabs at end you still have the same chance through the History menu. to restore your previous session and then to restore previous windows
You can make Firefox 4.0.1 and '''Firefox 5.0''' look like Firefox 3.6.17, see numbered items 1-10 in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 look like 3.6)]

Similar Messages

  • HT204370 why does my video and sounds not play at the same time when watching movies

    why does my video and sounds not play at the same time when watching movies

    Welcome to the unity.
    Upon which device are you watching your movies and are you using a home theatre system for your audio.

  • Why, suddenly, does Firefox decline to save all open windows before quitting?

    One of the best aspects of Firefox is that you can close your browser and Firefox will--or used to--remember all open tabs. Now my only option is open, or close and lose all tabs. Why?

    I agree with mrpoizun. I liked everything about Firefox before 4.
    This automatic saving of sessions has one big flaw! When opening FF, it shows a blank screen (simply because my innitial preference is to start on blank). If I should change my mind or accidentaly close this, the blank is saved, or rather the previous session is deleted. The Restore option is disabled.
    I request that "Save & Quit" be restored!
    Hm. Wonder if there is anything in my browsing habbits that requires FF4? If not, then I'll just try to find an earlier installation file.

  • Why does FireFox freeze and the only way to unfreeze it is to open the task manager and close the plugin-container.exe file??? It has been happening more and more often and it is getting VERY AGGRAVATING!!!!!

    When Firefox does freeze (not responding appears in parentheses in the page tab) I am not able to access any of the webpages (the entire webpage is hidden behind a vaguely white transparent foreground) and more often than not any files I might be downloading are stopped before the entire file has been transferred - which means that I have to start those downloads from the beginning AGAIN. This has been happening for quite some time and I AM SICK AND TIRED OF IT HAPPENING!!
    If it continues to happen for much longer I will swear off FireFox FOREVER!!!!! Either a program works or it does not work and lately Firefox has not worked worth a damn...........
    The ONLY way to force Firefox to allow me to access it is for me to end the plugin-container.exe file process using Task Manager. Clearing there is a SERIOUS problem here that has not been resolved - why not???

    The pluging container opens up unnecessary copies as the cookies/history are cleared, this is a known issue, it might be what you are seeing, and it is hoped to be fixed in some future release of firerox.
    There are some hangs affecting some users, with symptoms being high cpu usage, occurring as bookmark changes or syncing is in progress, there is a work around for that.
    Firefox hanging as you close it see:
    *[[firefox hangs]]
    * [[firefox is already running but is not responding]]

  • HELP! Why does my Drag and Drop not work Completely?

    Hello! I'm working on an ActionScript 3 movie clip in Adobe Flash. In the interactive movie I want the user to create a snowman with the parts on the left side. (Picture below.)
    On the right side I have the snowman slightly visible, so the user knows where to put the parts. Most of it seems to work... but after I put on the body, hat, and arms the other pieces don't work; like the eyes, nose, mouth, etc. Why does it not work? Can someone help me?
    This is how it should look at the end, when the user complets it.
    I think I coded this correctly. But I'm not sure. Please take a look at my code and see what the problem is. Thanks!!!
    var startX:Number;
    var startY:Number;
    var counter:Number = 0;
    SNOWMAN1_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    SNOWMAN1_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    SNOWMAN2_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    SNOWMAN2_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    SNOWMAN3_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    SNOWMAN3_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    LEFTARM_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    LEFTARM_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    HAT_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    HAT_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    RIGHTARM_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    RIGHTARM_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    SCARF_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    SCARF_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    EYES_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    EYES_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    MOUTH_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    MOUTH_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    CARROT_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    CARROT_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    COLE1_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    COLE1_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    COLE2_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    COLE2_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    COLE3_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    COLE3_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    function pickUp(event:MouseEvent):void {
    event.target.startDrag(true);
    MYTEXTBOX.text = "";
    event.target.parent.addChild(event.target);
    startX = event.target.x;
    startY = event.target.y;
    function dropIt(event:MouseEvent):void {
    event.target.stopDrag();
    var myTargetName:String = "T" + event.target.name;
    var myTarget:DisplayObject = getChildByName(myTargetName);
    if (event.target.dropTarget != null && event.target.dropTarget.parent == myTarget){
    MYTEXTBOX.text = "Good Job!";
    event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    event.target.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
    event.target.buttonMode = false;
    event.target.x = myTarget.x;
    event.target.y = myTarget.y;
    counter++;
    } else {
    MYTEXTBOX.text = "Try Again!";
    event.target.x = startX;
    event.target.y = startY;
    if(counter == 13){
            MYTEXTBOX.text = "Congrats, you're finished!";
    SNOWMAN1_mc.buttonMode = true;
    SNOWMAN2_mc.buttonMode = true;
    SNOWMAN3_mc.buttonMode = true;
    LEFTARM_mc.buttonMode = true;
    HAT_mc.buttonMode = true;
    RIGHTARM_mc.buttonMode = true;
    SCARF_mc.buttonMode = true;
    EYES_mc.buttonMode = true;
    MOUTH_mc.buttonMode = true;
    CARROT_mc.buttonMode = true;
    COLE1_mc.buttonMode = true;
    COLE2_mc.buttonMode = true;
    COLE3_mc.buttonMode = true;

    Below is a more efficient code. I am not sure about chasing parents you do in the code (always bad idea) so this code may be buggy:
    var startX:Number;
    var startY:Number;
    var counter:Number = 0;
    // reference to currently dragged object
    var currentTarget:Sprite;
    var objectCollection:Array = [SNOWMAN1_mc, SNOWMAN2_mc, SNOWMAN3_mc, LEFTARM_mc, HAT_mc, RIGHTARM_mc, SCARF_mc, EYES_mc, MOUTH_mc, CARROT_mc, COLE1_mc, COLE2_mc, COLE3_mc];
    activateObjects();
    function activateObjects():void {
         for (var i:int = 0; i < objectCollection.length; i++) {
              currentObject = objectCollection[i] as Sprite;
              currentObject.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
              currentObject.buttonMode = true;
    function pickUp(event:MouseEvent):void {
         currentTarget = event.currentTarget as Sprite;
         currentTarget.startDrag(true);
         MYTEXTBOX.text = "";
         currentTarget.parent.addChild(currentTarget);
         startX = currentTarget.x;
         startY = currentTarget.y;
         stage.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    function dropIt(event:MouseEvent):void {
         stage.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
         stopDrag();
         var myTarget:DisplayObject = getChildByName("T" + currentTarget.name);
         if (currentTarget.dropTarget != null && currentTarget.dropTarget.parent == myTarget){
              MYTEXTBOX.text = "Good Job!";
              currentTarget.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
              currentTarget.buttonMode = false;
              currentTarget.x = myTarget.x;
              currentTarget.y = myTarget.y;
              counter++;
         } else {
              MYTEXTBOX.text = "Try Again!";
              currentTarget.x = startX;
              currentTarget.y = startY;
         if (counter == 13) MYTEXTBOX.text = "Congrats, you're finished!";
         currentTarget = null;

  • Why does firefox 16.0.1 not allow me to click on buttons in the top 40mm below the banners, though i can get to them by tabbing to a buttons then press "Enter"?

    It doesn't matter what web-page I'm on, the top 40mm or so of the screen is a dead area for clicking on buttons or links. e.g. in Google I can click on a link lower down the page and get transferred to the new article - but if I were to move the item up nearer the top of the page the link would no longer operate.
    I can move to a link by repeated operation of the "Tab" key until the link or button is indicated, and then press "Enter" to use the link, but this is potentially very time-consuming if there are a lot of links on the page.
    I'm using a Toshiba Satellite L750 loaded with Windows 7, and Firefox 16.0.

    Problems with buttons and links at the top of the page not working can be caused by an extension like the Yahoo! Toolbar or a Babylon extension that extents too much downwards and covers the top part of the browser window and thus makes links and buttons in that part of the screen not clickable.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    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

  • Why does Adobe Bridge and Lightroom not recognise some jpeg files?

    I am trying to use Adobe Bridge and/or Lightroom to add tags to a large number of images that I have. However when adding images, almost 1000 of the 6900 images fail to import to the Lightroom gallery and the same images do not preview and will not let me edit their metadata in Bridge.
    If this has happened to anybody else I would greatly appreciate some help.
    Alternatively if anybody knows of other programs i can use to easily add tags to many many images please let me know =)
    Samples of Files that work and files that don't:
    http://files.filefront.com/FileSamplerar/;13605286;/fileinfo.html

    I downloaded same, but the folder marked "Don't work" comes up empty.

  • Why does Firefox freeze and/crash shortly after I install "updates"?

    Recently, after I have installed a newer version of Firefox, or updates you have provided my system freezes, won't open sites I access. This also affects my e-mail accounts!
    It's almost enough to make me reluctantly revert to Ineternet Explorer.'''bold text'''

    Does it help if you disable the plugin-container process?
    See http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins

  • Why does my canoscan 9950FII suddenly not work anymore? Mountain Lion. Error: scanner not found and PCPower no longer supported.

    New iMac with OS X Mountain Lion. Canocan 9950F II, bought new because my old 9950F was not supported by Mac. Driver installed from CD, everything fine, worked perfectly. After some time of not using the scanner, I tried to scan a document now. It did not work. It says it cannot find the scanner although everything is plugged in and switched on. And then the message that PC Power is no longer supported. HELP!!!

    Check the Canon Web Site for new software and download the software for Mac OS X (Intel Mac) or select Intel Mac from the install disk.
    I checked the Canon Support Site, but there isn't a 9950F Mark II on the U.K Site, but there is a 9000F Mark II.
    The messgae you are getting suggests the PowerPC software version has been installed instead of the Intel Version.

  • Why does my preferred desktop display immediately switch to another display when I open an icon on the current desktop?

    why does my preferred desktop display immediately switch horizontally to another display when I open an icon on the current desktop?

    That's not a shortcut you are creating with "save as", you are saving a copy of the webpage to your desktop - hence the folder with files for that webpage.
    https://support.mozilla.com/en-US/kb/Creating+a+desktop+shortcut+to+a+web+page

  • Why does Firefox keep on saying not responding when playing games a on Facebook and on other wesites that has to do with Facebook?

    it is very slow

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

  • Why does Firefox 29.0.1 not show any footer

    I recently installed Firefox 29.0.1 on an XP system, and have carefully reviewed all the settings. I've downloaded a few personas. It seems to render all web sites appropriately. However, I'm concerned that I may be missing something - the footer. The documentation on creating personas shows that they consist of a header image, and a thin footer image. I have a persona applied at the moment, but see only its header, and not its footer. I get the same result if I switch to the default blue theme. It does not matter whether or not the window is maximized. The scrollable area of any website extends to the bottom of my screen if maximized, or otherwise to the bottom of the window's scrollable area.
    My main concern is not aesthetics, but that I may be lacking some functionality. I saw an example of a footer image on the page that documents the creation of personas. The footer shown in the image has a small fox icon with a dropdown arrow at one end, and an "x" near the other. I presume that the icon and arrow might provide some kind of functionality, and/or that useful information might sometimes be displayed in the footer. Can you tell me if I should be seeing a footer, and if so, what might be preventing its display?

    In Firefox 29, the Add-on bar was consolidated into the main navigation toolbar, so it's normal not to have that bar at the bottom of the window. There are a couple of extensions which can restore the bar, but unless you are missing it (or some of your extensions require it), then you may not need to do anything.

  • Why does Firefox frequently and randomly crash?

    Hi there, for the last couple months Firefox has gone from rock solid stability to frequently crashing randomly. The crashes occur when I'm actively browsing or not doing anything - I can't identify any particular action that is causing the crashes. The crash IDs are seemingly random and from a variety of sources.
    Here are 5 recent crash ID's:
    c97123e4-154d-40e9-b062-0adad2101025
    70657a9e-5a9b-4f01-9eed-fe3162101025
    959a25e7-75ee-4b2c-879b-bc5382101025
    465eac9c-56f9-4d61-8b72-22d7d2101023
    25590fa8-fdd7-48a8-8cb8-fa3052101022
    Much thanks!

    Does this occur when you click links in search engine results? There were some malware around that did this, which you can read about by searching for "Google Redirect Virus". Some are quite difficult to remove.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility] - especially useful for tough cases
    * [http://www.bleepingcomputer.com/download/adwcleaner/ AdwCleaner] ''(ignore banner ads for other products)''
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.

  • Why does firefox freeze and then doesn't fully release from memory, but I have to End Process from Task Manager?

    Frequently, Firefox for Windows (Vista) freezes up. I click on a link or try to go to another web page and nothing happens. The icon in the tab is just spinning, with Connecting. but it never connects. Then when I close it - if it lets me. I click to open it again and a window pops up saying that Firefox is already running, to please close it before launching it again. I have to go to Task Manager and End task from the Processes tab. It is also a resource hog including the Plug-In Container.

    The pluging container opens up unnecessary copies as the cookies/history are cleared, this is a known issue, it might be what you are seeing, and it is hoped to be fixed in some future release of firerox.
    There are some hangs affecting some users, with symptoms being high cpu usage, occurring as bookmark changes or syncing is in progress, there is a work around for that.
    Firefox hanging as you close it see:
    *[[firefox hangs]]
    * [[firefox is already running but is not responding]]

  • Why does firefox 3.6.13 keep asking me what program to use to open torrent files when default is already set?

    latest updates has done the same thing with all updates

    http://support.mozilla.com/en-US/kb/Managing%20file%20types#w_download-actions
    '''When you click a link to download a file, the [https://developer.mozilla.org/en/Properly_Configuring_Server_MIME_Types#What_are_MIME_types.3F MIME type] determines what action Firefox will take.'''
    Firefox doesn't go by the file extension like other browsers might. Wrong MIME type or a missing MIME type and Firefox will ask you what you want to do with the file.

Maybe you are looking for

  • Windows can't open this file : ***.exe.

      I am facing problem while launching any exe file on my machine and while launch any exe getting message as below. Windows can't open this file : ****.exe. for each exe file am getting the error like taskmgr.exe, cmd.exe,msconfig.exe. System config:

  • Ipod skips 4-5 random songs after each sync

    I bought my first ipod last thursday and i have had numerous problems starting from the moment itunes attempted to import my existing music library. I have fixed most of the problems myself, but there still two that have me stumped. 1) After i sync m

  • Patch available for JMS?

    Hi,           I am using a Weblogic Server 8.1 SP4 on my local development environment. The application has a JMS based report module. A report is created by the front-end and stored in a JMS Queue with a persistent FileStore. Once the report is crea

  • Restoring an older file.

    Can I restore from a previous cloud file if a newer one exists?  I want to access data from yesterday that was overwritten in today's backup, both on the cloud and on my computer.

  • Servlet configuration setting

    I have a question on how to call a servlet from the HTML file under oc4j environment. I get the configuration on the default-web-app\WEB-INF\web.xml, as follows <servlet> <servlet-name>UIBroker</servlet-name> <servlet-class>com.attachmate.mcs.system.