When Firefox in minimized and I'm working with another program, why does it automatically maximize (pop up) every 10 minutes?

I'm using Windows 7 and Firefox 8.0.1 on a PC. This is frustrating. I like Firefox, but it keeps popping up every 10 minutes when it's minimized and I'm working in another program. I can't continue to use it if this can't be fixed. I just switched from 3.6 and never had any problems. Also, no settings have been changed.

Great suggestion! It looks like one problem has been solved. I started Firefox in safe mode and the problem didn't occur. Then I restarted in regular mode and individually disabled one add-on at a time. What I found is that with Better Privacy disabled, the pop-up no longer occurred. So step one, identifying the source of the problem, is complete. Now onto step two, finding out what setting in Better Privacy is causing the problem. There's nothing that stands out to me as the culprit. Any ideas? Thanks again!

Similar Messages

  • Every time when Firefox is minimized and I tab into it I can't use it. It's completely locked. Is there a way to fix this?

    Every time when Firefox is minimized to the tray and I open it up again i can't use it until I click on a tab that's not focused or on the search field with the mouse. It's completely locked, I can't press ctrl+1/2/3 etc to change tab or ctrl+e to go to search. Last time everything worked like it should was on release 3.5.14
    Is there a way to fix this?
    Edit: I've tried reinstalling Firefox and gotten a new profile, that didn't help.
    Edit2: Updated to 3.6.9 and I still have the problem.
    Edit3: Just installed 3.6.11, the problem is still there.
    I can't understand how 3.5.14 can work and not a singel release after that.
    Opera here I come, soon...

    - Try cleaning out/blowing out the headphone jack. Try inserting/removing the plug a dozen times or so.
    If still problem that indicates you have a bad headphone jack.
    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours. Likely not worth it for your old 2G iPod
    Apple - iPod Repair price                  
    A third-party place like the following will replace the jack for less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the jack yourself
    iPod Touch Repair – iFixit

  • Plugin-container and Flashplugin are both generating a million reads and writes an hour... even when Firefox is minimized and running no audio/video; how can I

    I am running FF 18.0.2 on a Win7 system with an i7 CPU and 8GB RAM. My Flash plugin is newly-updated. I've used Firefox on this machine its entire life (3 years).
    Since 3 or 4 (?) versions ago, I've been getting massive activity on my hard drive with Firefox. When I check with Win Task Manager, I see the plugin-container.exe *32 and the FlashPlayerPlugin_11_5_502_149.exe *32 processes are generating millions of I/O reads and writes, even while Firefox is idle (minimized, running no audio or video). On this latest version, 18.0.2, the drive activity stalls out YouTube videos repeatedly, even though I can see they're buffered ahead. The playing video will stop, audio will continue to end of buffer, and then EVERYTHING stops (Firefox not responding) for 30 seconds or so. It will then pickup again and play until it repeats the same pattern in a minute or so.
    Example: I closed and restarted Firefox 2 days ago. Earlier today I checked Windows Task Manager and found the two processes EACH generated about 161 million reads and 141 million writes since then! My wife's laptop is showing nothing like a hundredth of that.
    The constant drive activity is slowing down all programs outside of Firefox too, as you might imagine. The PC is acting like it's a dedicated machine for Flash.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Trouble getting a JMF program working with another program

    hello.
    my name is james mcfadden. i am having difficulty compiling the first program (a menu GUI) here. even though the second program (the JMF program) can be compiled and runned as a separate application, i'm trying to get be able to use the first program to run the second program. when i compile the first program i get the following errors. i don't know what are causing these errors?
    ----jGRASP exec: javac -g X:\CP4B Project\Demo.java
    Demo.java:284: cannot find symbol
    symbol : constructor Media()
    location: class Media
    Media media=new Media();
    ^
    Demo.java:288: cannot find symbol
    symbol : constructor Media()
    location: class Media
    Media media=new Media();
    ^
    Demo.java:292: cannot find symbol
    symbol : constructor Media()
    location: class Media
    Media media=new Media();
    ^
    3 errors
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
    //Written by:Seamus McFadden
    //Class:CP4B
    //Program Number:1
    //Program Name:Demo.java
    //Description:
    //Supervisor:Gerard McCloskey
    import java.awt.*;//Contains all of the classes for creating user interfaces and for painting graphics and images
    import java.awt.event.*;//Provides interfaces and classes for dealing with different types of events fired by AWT components
    import javax.swing.*;//Provides a set of lightweight components that, to the maximum degree possible, work the same on all platforms
    public class Demo extends JFrame{
        public static void main(String[] args){
            int choice=-1;//a variable of type int that is set to -1
            do{
               choice=getChoice();//invokes the method getChoice()
               if(choice!=0){
                   getSelected(choice);//invokes the method getSelected(choice)
               }//end if
               //if the user chooses 4, it will cause him or her to exit the system
            }while(choice!=5);//end do-while
            System.exit(0);//closes down the menu screen
        }//end main
        public static int getChoice(){
            String choice;//a variable of type string
            int ch;//a variable of type int
            choice=JOptionPane.showInputDialog(null,
                    "1. Product Menu\n" +
                    "2. Member Menu\n" +
                    "3. Rental Menu\n" +
                          "4. Media Menu\n" +
                    "5. Log Off\n\n" +
                    "Enter your choice");//asks the user for some input
            ch=Integer.parseInt(choice);//a class that wraps a value of the primitive type int in an object
            return ch;//a method that returns an integer value
        }//end getChoice
        public static void getSelected(int choice){
            if(choice == 1) {
                   product();
            }//end if
            if(choice==2){
               member();
            }//end if
            if(choice==3){
               rental();
            }//end if
                if(choice==4){
               media();
            }//end if
        }//end getSelected
        public static void product(){
             int productChoice=-1;//a variable of type int that is set to -1
           productChoice=getProductChoice();//invokes the method getChoice()
           if(productChoice!=0){
              getProductSelected(productChoice);//invokes the method getSelected(choice)
           }//end if
           System.exit(0);//closes down the menu screen
        public static void member(){
           int memberChoice=-1;//a variable of type int that is set to -1
           memberChoice=getMemberChoice();//invokes the method getChoice()
           if(memberChoice!=0){
              getMemberSelected(memberChoice);//invokes the method getSelected(choice)
           }//end if
           System.exit(0);//closes down the menu screen
        public static void rental(){
           int rentalChoice=-1;//a variable of type int that is set to -1
           rentalChoice=getRentalChoice();//invokes the method getChoice()
           if(rentalChoice!=0){
              getRentalSelected(rentalChoice);//invokes the method getSelected(choice)
           }//end if
           System.exit(0);//closes down the menu screen
          public static void media(){
           int mediaChoice=-1;//a variable of type int that is set to -1
           mediaChoice=getMediaChoice();//invokes the method getChoice()
           if(mediaChoice!=0){
              getMediaSelected(mediaChoice);//invokes the method getSelected(choice)
           }//end if
           System.exit(0);//closes down the menu screen
          public static int getProductChoice(){
           String productChoice;//a variable of type string
           int pch;//a variable of type int
           productChoice=JOptionPane.showInputDialog(null,
                   "1. Add product details\n" +
                   "2. View product details\n" +
                   "3. Edit product details\n" +
                         "4. Delete product details\n" +
                   "5. Exit\n\n" +
                   "Enter your choice");//asks the user for some input
           pch=Integer.parseInt(productChoice);//a class that wraps a value of the primitive type int in an object
           return pch;//a method that returns an integer value
        }//end getChoice
          public static int getMemberChoice(){
           String memberChoice;//a variable of type string
           int mch;//a variable of type int
           memberChoice=JOptionPane.showInputDialog(null,
                   "1. Add member details\n" +
                   "2. View member details\n" +
                   "3. Edit member details\n" +
                             "4. Delete member details\n" +
                   "5. Exit\n\n" +
                   "Enter your choice");//asks the user for some input
           mch=Integer.parseInt(memberChoice);//a class that wraps a value of the primitive type int in an object
           return mch;//a method that returns an integer value
        }//end getChoice
          public static int getRentalChoice(){
           String rentalChoice;//a variable of type string
           int rch;//a variable of type int
           rentalChoice=JOptionPane.showInputDialog(null,
                   "1. Add rental details\n" +
                   "2. View rental details\n" +
                   "3. Edit rental details\n" +
                             "4. Delete rental details\n" +
                   "5. Exit\n\n" +
                   "Enter your choice");//asks the user for some input
           rch=Integer.parseInt(rentalChoice);//a class that wraps a value of the primitive type int in an object
           return rch;//a method that returns an integer value
        }//end getChoice
          public static int getMediaChoice(){
           String mediaChoice;//a variable of type string
           int mtch;//a variable of type int
           mediaChoice=JOptionPane.showInputDialog(null,
                   "1. Listen to songs\n" +
                             "2. View movie previews\n" +
                             "3. View game previews\n" +
                   "4. Exit\n\n" +
                   "Enter your choice");//asks the user for some input
           mtch=Integer.parseInt(mediaChoice);//a class that wraps a value of the primitive type int in an object
           return mtch;//a method that returns an integer value
        }//end getChoice
          public static void getProductSelected(int productChoice){
           if(productChoice==1){
                  addProducts();
           }//end if
           if(productChoice==2){
              viewProducts();
           }//end if
           if(productChoice==3){
              editProducts();
           }//end if
               if(productChoice==4){
              deleteProducts();
           }//end if
        }//end getSelected
          public static void getMemberSelected(int memberChoice){
           if(memberChoice==1){
                  addMembers();
           }//end if
           if(memberChoice==2){
              viewMembers();
           }//end if
           if(memberChoice==3){
              editMembers();
           }//end if
               if(memberChoice==4){
              deleteMembers();
           }//end if
        }//end getSelected
          public static void getRentalSelected(int rentalChoice){
           if(rentalChoice==1){
                  addRentals();
           }//end if
           if(rentalChoice==2){
              viewRentals();
           }//end if
           if(rentalChoice==3){
              editRentals();
           }//end if
               if(rentalChoice==4){
              deleteRentals();
           }//end if
        }//end getSelected
          public static void getMediaSelected(int mediaChoice){
           if(mediaChoice==1){
                  hearSongs();
           }//end if
           if(mediaChoice==2){
              viewMovies();
           }//end if
           if(mediaChoice==3){
              viewGames();
           }//end if
        }//end getSelected
          public static void addProducts(){
           ProductForm product=new ProductForm();
           product.getInput();
               product.setVisible(true);
          public static void viewProducts(){
           DatabaseTest tt=new DatabaseTest();
               tt.setVisible(true);
          public static void editProducts(){
           ProductForm product=new ProductForm();
               product.getInput();
               product.setVisible(true);
          public static void deleteProducts(){
           ProductForm product=new ProductForm();
               product.setVisible(true);
          public static void addMembers(){
           MemberForm member=new MemberForm();
               member.getInput();
               member.setVisible(true);
          public static void viewMembers(){
           DatabaseTest tt=new DatabaseTest();
               tt.setVisible(true);
          public static void editMembers(){
           MemberForm member=new MemberForm();
               member.getInput();
               member.setVisible(true);
          public static void deleteMembers(){
           MemberForm member=new MemberForm();
               member.setVisible(true);
          public static void addRentals(){
           RentalForm rental=new RentalForm();
               rental.getInput();
               rental.setVisible(true);
          public static void viewRentals(){
           DatabaseTest tt=new DatabaseTest();
               tt.setVisible(true);
          public static void editRentals(){
           RentalForm rental=new RentalForm();
               rental.getInput();
               rental.setVisible(true);
          public static void deleteRentals(){
           RentalForm rental=new RentalForm();
               rental.setVisible(true);
        public static void hearSongs(){
           Media media=new Media();  
        public static void viewMovies(){
           Media media=new Media();   
        public static void viewGames(){
           Media media=new Media();   
    }//end class Demo
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.io.IOException;
    import java.net.URL;
    import javax.media.CannotRealizeException;
    import javax.media.Manager;
    import javax.media.NoPlayerException;
    import javax.media.Player;
    import javax.swing.JPanel;
    import java.io.File;
    import java.net.MalformedURLException;
    import javax.swing.JFileChooser;
    import javax.swing.JFrame;
    public class Media extends JPanel{
       public Media(URL mediaURL){
          setLayout(new BorderLayout());//use a BorderLayout
          //Use lightweight components for Swing compatibility
          Manager.setHint(Manager.LIGHTWEIGHT_RENDERER,true);
          try{
             //create a player to play the media specified in the URL
             Player mediaPlayer=Manager.createRealizedPlayer(mediaURL);
             //get the components for the video and the playback controls
             Component video=mediaPlayer.getVisualComponent();
             Component controls=mediaPlayer.getControlPanelComponent();
             if(video!=null)
                add(video,BorderLayout.CENTER);//add video component
             if(controls!=null)
                add(controls,BorderLayout.SOUTH);//add controls
             mediaPlayer.start();//start playing the media clip
          }//end try
          catch(NoPlayerException noPlayerException){
             System.err.println("No media player found");
          }//end catch
          catch(CannotRealizeException cannotRealizeException){
             System.err.println("Could not realize media player");
          }//end catch
          catch(IOException iOException){
             System.err.println("Error reading from the source");
          }//end catch
       }//end Media constructor
       // launch the application
       public static void main( String args[] ) {
          // create a file chooser
          JFileChooser fileChooser = new JFileChooser();
          // show open file dialog
          int result = fileChooser.showOpenDialog( null );
          if ( result == JFileChooser.APPROVE_OPTION ) {
             URL mediaURL = null;
             try {
                // get the file as URL
                mediaURL = fileChooser.getSelectedFile().toURL();
             } // end try
             catch ( MalformedURLException malformedURLException ) {
                System.err.println( "Could not create URL for the file" );
             } // end catch
             if ( mediaURL != null ) {
                JFrame mediaTest = new JFrame( "Media Tester" );
                mediaTest.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
                Media mediaPanel = new Media( mediaURL );
                mediaTest.add( mediaPanel );
                mediaTest.setSize( 300, 300 );
                mediaTest.setVisible( true );
             } // end inner if
          } // end outer if
       } // end main
    }

    hello.
    thanks for the reply. how do i create argument
    constructors in Java?Please re-read my post ... you already have one. If you want to use it, simply pass in the argument to it that it wants. In this case it wants a URL (Universal Resource Locator). Please check out the java.net.URL package in the [url http://java.sun.com/javase/6/docs/api/]API doco.
    You can build a URL like this:
    URL url = getClass().getResource( "textfile.txt" ); // Just an example - where the file resides in the same location as the class file.

  • How do I manually add the php3 file type to work with Adobe Reader, Safari does this automatically.

    downloading php3 files auto jumps to text edit,, cannot tell it to open with "adobereader" , no chance to do so. Tried reading on how I might add the file manually to tell preferences applications to add this file type and open it with adobe reader. Only saw download the file and then firefox will let you open with a program. Can't get there in that text edit opens it.
    Safari has no problems with this in that it opens it in adobe reader easily, no work on my part so ????
    how do I get firefox to do the same

    Do you get the dialog asking whether you want to Open, Save or Cancel? That may indicate the file type Firefox thinks it is getting from the server.
    If you can't coax Firefox into revealing the content type indicated by the server, could you post a link to one of the PDFs, assuming no login is required to access one?

  • When filtering by keyword and using "Edit In" with Photoshop, edited file does not show up in list

    When I do an "edit in" using CS5 and save it, the edited file does not show up in my LR4 preview window.
    Message title was edited by: Brett N

    There are two distinct modes by which Edit In... may first open an image into PS: as a fully pre-converted rendered file; or as an on-the-fly converted image in memory.
    (When LR opens a PS-edited image a second time into PS, using "Edit Original", the former option is always used.)
    In the latter case, it is ACR which does this on-the-fly conversion, working from the original image (as imported into LR) plus your subsequent LR adjustment metadata. This means ACR compatibility with LR becomes an issue - as it is not, with the pre-rendered file option.
    There is a useful clue to which mode is being used:
    the title of the PS document window, in the case of the on-the-fly conversion, still shows the name of the Raw file (or whatever) that you started with in LR... no file has been saved as yet, to say any different. You can Save or Save as, wherever and under whatever name, and from now on LR will look there for your edited image. Or if you close unsaved, LR has no edited image to show at all.
    the title of the PS document window in the pre-rendered case, is the name of a file already saved on disk and already showing in LR. If you then saved this elsewhere, you would merely make a duplicate which LR cannot know about - and if this duplicate is the one which contains your PS work, LR will accordingly not show that. It is busy showing the content of the specific file that was passed to PS.
    So, if inside CS5 your document is called something like IMG23334.dng - you can save it wherever you like. If inside CS5 your document is called something like IMG23334-edit.tif - you will have to save your changes back to that exact same file, in order for them to be seen in LR.

  • TS3212 I have a different CD DVD program, and I don't want to delete it, and ITunes is telling me another program is doing the CD DVD program, so it is not completing installation?

    Since this other program I use for CD copying and DVD copying, or as we say back up, I don't want to delete it, but I Tunes will notcomplete with me using this, and I don't know what do do.
    It stops for example when I want to update my IPod Touch 64GB to add ISO5.
    Any suggestions?
    Thank you, holidaypro

    No clue what you are talking about.
    What is the exact wording of the message displaying?
    What does this have to do with an iPod Touch?
    iTunes honestly could care less what CD/DVD recording program you have installed.

  • Why does iPhone 5 not work with wifi?, Why does iPhone 5 not work with wifi?

    I have been having very high data usage.  My iPhone 5 will not stay connected to wifi or will totally not work on wifi. Provider is AT&T.

    It hasent been updated to support iphone 5 screen size yet, it will come in time.

  • When I have all Firefox windows minimized, and am using another program or am idle, the Firefox windows keeping randomly popping up. How can I stop this behaviour?

    I'm running Windows 7 and Firefox 6.0.2. When I have all Firefox windows minimized and am working in another program, the Firefox windows just randomly open in front of my other app and interrupt me. I have to minimize them again. It is extremely distracting and annoying, and often interrupts in the middle of something important. How can I stop Firefox from doing this?

    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

  • HT1338 Presently running mac osx 10.5.8. Recent Firefox update says it no longer works with osx 10.5 and it's no longer supported by apple. Any suggestins?

    Presently running mac osx 10.5.8. Recent Firefox update says it no longer works with osx 10.5 and it's no longer supported by apple. Any suggestins?

    Use an earlier version of Firefox, use Safari, or upgrade to a later version of OS X. Any Intel Mac can run Snow Leopard.
    Latest version of Safari for Leopard: http://support.apple.com/kb/DL1422
    Information for Firefox: http://support.mozilla.org/en-US/kb/firefox-no-longer-works-mac-os-10-4-or-power pc
    http://support.mozilla.org/en-US/kb/firefox-no-longer-works-mac-os-x-10-5

  • TS3218 My iPod Nano 6th generation fell one time and it kept working with a small crack in the screen.But after a while it just gave out and does not turn on.I try to charge it and all it does is blink the apple icon on and off.When disconnected nothing h

    My iPod Nano 6th generation fell one time and it kept working with a small crack in the screen.But after a while it just gave out and does not turn on.I try to charge it and all it does is blink the apple icon on and off.When disconnected nothing happens.

    I am having the identical trouble as described above with my month old Macbook Air. I tried everything with the ditto results. Please help anyone!
    Mine is a Macbook Air 13', 128GB, 1.86GHz with 4 GB RAM.

  • Iam from Yemen we have CDMA carrier called Yemen mobile I bought an iPad from the US CDMA works with Verizon when I got to Yemen doesn't work with the carrier Yemen mobile and  both carriers verizon and Yemen mobile work by the CDMA system don't know whey

    Iam from Yemen we have CDMA carrier called Yemen mobile I bought an iPad from the US CDMA works with Verizon when I got to Yemen doesn't work with the carrier Yemen mobile and  both carriers verizon and Yemen mobile work by the CDMA system don't know whey can anyone help me please..

    A Verizon-model iPad can only work on CDMA with Verizon. You cannot use it with any other carrier. Apple, to my knowledge, has not released the iPad in Yemen, so there is no iPad you can use with any carrier there that works only on CDMA. You would need to find a GSM carrier and then get an unlocked GSM iPad.
    Regards.

  • Why does my phone keep popping up messages "This cable or accessory is not certified and may not work reliably with this iphone" when there is no cable connected?

    Why does my phone keep popping up messages "This cable or accessory is not certified and may not work reliably with this iphone" when there is no cable connected? This has been happening since IOS7 was installed and has become worse with 7.1. I have reset the phone several times with no change.The phone charges properly & I have never used anything but an Apple Lightning cable.

    I already cleaned the port with compressed air before submitting the problem. I since cleaned it with a toothpick and dug out some more lint. this seems to have just about fixed the problem since I have only had the error pop up 3 times since then and i was getting the error constantly before.

  • I have adblock + ...when Firefox becomes unresponsive and I have to reboot, adblock disappears and I have to reinstall it each time. How do I stop this?

    There are times when Firefox becomes unresponsive and I have to close down and restart. Upon restart, adblock + is gone and I have to reinstall it. How do I stop this from happening?

    Hi,
    Do you have other '''Extensions''' in '''Tools''' ('''Alt''' + '''T''') > '''Add-ons'''??

  • Why did Firefox intervened to move data while working with an Excel file; cannot locate the data.

    Downloaded Firefox 2wks ago. Just now working with a large Excel spreadsheet when something happened losing all 6 sheets of data. My file location now shows sheet data as Firefox Document. Now I can't retrieve this file of data; it was financial data! What happened for Firefox to intervene?

    No, Sir. I was strictly working within a newly created Excel file. Actually, Internet Explorer is current browser.
    Thank you for interest and any suggestion.
    Re-thinking thru this, it is probable I downloaded the base data thru FIREFOX. I was working with the project on an Excel spread sheet when I lost the data. The sheets still exist but the data is missing. Very strange.

Maybe you are looking for

  • Tax invoice not show in assignment field of billing doc & ref doc of FI doc

    Dear Gurues Does anyone know how to able to display Tax invoice numbering at the assignment field of Billing doc and reference doc header field in FI doc generated by posting billing doc. Also post through POS IDoc? I have change SD config to correct

  • Editing Help for a newbie.....Please be gentle..

    I am new to Photoshop CS3, in fact, new to photoshop entirely. I have been using MS Digital Image Pro and up until now it has worked for me. Here is my problem. I take a lot of pictures of coins. Sometimes I have to tilt the coin slightly to get a go

  • Reconnection to oracle DB

    Dear Experts, I use oracle thin client. How can my application keep retry of login to database at startup if the database host shutdown? (e.g. ds.setURL("jdbc:oracle:thin:@invalid host:15111:locdb"); If I can create connection pool and execute sql st

  • Why we need ITS & Web As server in portal landscape

    HI Gurus, Why we need ITS server and web As server in portal landscape Thanks in Advance, Sakthi

  • Iphone, Ipad and 2 x Ipod

    I currently have my Iphone and Ipad setup on my mac itunes. The wife has her iphone on her PC with Itunes Whenever they download, we use my account so I have to enter my credentials. I do this because I like to keep track on things and I don't want t