"It's just does not work.

constant crashing, shockwave constantly turning off, unable to multiply things in the browser as the first versions of windows, it crashes

Can you give me your incident reports?

  1. Enter Subject: hangs in the Firefox address bar and press ENTER. A list of submitted Crash reports will appear, similar to the one shown below.
  2. Copy the 5 most recent report IDs that begins with a bp - and paste them into your response here.

Tags: Firefox

Similar Questions

  • USB ports, CD/DVD player, and Mike just does not work

    So I'm pretty sure that these things are happening at the same time, although there are risks my trying to troubleshoot the USB ports have contributed to the failure of the microphone (internal and will not capture sound) and cd/dvd drive (not open). Perhaps? It is true that I know little about these kinds of things, but I'm much less following the indications which is what I did to try to tackle the problem of USB port, which was the first I noticed. I followed all the advice I could find online for troubleshooting when all usb ports do not respond. I used Device Manager to disable in its regular and safe mode. I also uninstalled them all in both modes (even if they reinstall until I'm able to restart). I unplugged and wait 5, 10, 15 min etc. There was a difficulty mentioned about watching the. Mine and INF files do not contain the mentioned error. I'm tempted to all my files backup and restore the computer to factory settings, especially now that the CD/DVD player and the micro does not work. This would solve the problem? If these things are related? Could even restore settings because I can't have in the cd/dvd drive? It's a dell inspiron 1721, and it crushed while you restart for almost a whole day just all the time I've began to notice all these malfunctions. I really appreciate any guidance!

    Good so I solved all of these problems. I don't know what did the trick, but when I went back in the BIOS to re - activate the ports they have worked!

  • X 230 with Ubuntu 13.10. Just does not work?

    Took delivery of my new X 230 yesterday. This machine came without OS and I installed Ubuntu 13.10 as the only operating system. Installation went well. This love machine. Some problems, however. The following does not work at the moment:

    1 F8 + F9 buttons to clear up the brightness of the screen

    2 Touchpad has no function. Might be off but where and how?

    3 Trackpad no function? Also be cut perhaps?

    4 non-operational fingerprint scanner? (not a big deal for me)

    Would appreciate any help in resolving these issues

    13.10 Ubuntu looks good and works well, but still a bit unstable.

    In this machine's plug. Processor Intel i5, 8 GB Ram, 500 GB HDD + 128 GB Samsung SSD eSata

    Hey

    check out this link once... maybe, it might help you

    http://AskUbuntu.com/questions/197336/how-to-enable-finger-printer-with-ThinkPad-x230

  • My printer just does not work in safe mode. I have Windows vista.

    My computer keeps closing, the blue screen of death coming up next, then it exports.  I can not restore because cannot me whille in safe mode.  I am trying to print some documents in safe mode, and it does not allow me.  It is said that it does not recognize the printer.  Any suggestions on how I can get my printer to work.  I have not found what is the cause of blue screen of death.  It's a dell computer and after paying $ 50 to help out, there me no where.  I'm back a square.

    You cannot use the printer mode without failure. Copy documents and other files you need to a USB key or external hard drive. I can't help you on the stop the down without knowing the text of the Stop (blue screen) error. Offhand, it sounds like a faulty hardware, but without knowing anything further is just a guess. MS - MVP - Elephant Boy computers - don't panic!

  • Impossible to send multiple pages with O'jet 5610. Just does not work.

    I had my 5610 for years but never faxed several pages.  When I tried yesterday they would not go.  Pages loaded in the tray and pushed all the right buttons, but when I chose '2' to answer the question 'fax of the glass?' they would not go.

    Problem solved.  I was loading the docs with a fax in the charger, I use when printing and did not know that there is an adf on the top of the cover.  All OK now and thanks for your help.  When I looked at the diagrams on the pages of your recommended, it was obvious what I had done wrong.  Have a great day.  Ken

  • Photoshop CS6 auto tone, Auto color, auto contrast just does not work.

    Mac OS file 10.9.4 regardless of the JPG or DNG, 8-bit, RGB. Click on one of the features three automatic and the whole image is a degree of washed out. See before and after. Help, please.before_after_PS_CS6.jpg

    It could be the Correction Options automatic color > target colors are out of wack.

    Make a layer and levels adjustment in photoshop, select Options from the car.

    The default colors are

    (click on color chips to change)

    Shadows RGB 0,0,0

    RGB 128,128,128 midtones

    RGB 255,255,255 highlights

  • jQuery code does not work in phonegap

    Someone gave me a code https://jsfiddle.net/adeneo/2uod274d/ jsfiddle

    It works well in jsfiddle, but when I put the code in my Xcode and amended to incorporate my code and run it in the Simulator, the code does not work at all (i.e., no data is stored in the local storage)

    I am building an app for iOS with phonegap. JS:

    <script type="text/javascript" src="cordova.js"></script>
      
    <script type="text/javascript" src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
      
    <script type="text/javascript" src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js"></script>

      
    <script type="text/javascript">
      document.addEventListener("deviceready",onDeviceReady,false);

      function onDeviceReady() {

      document.getElementById("btnSave").addEventListener("click",saveData,false);
      document.getElementById("btnShow").addEventListener("click",showData,false);
    }

      function saveData(){
      var data = window.localStorage.getItem("date");

      var dates = data ? JSON.parse(data) : [];

      dates.push( new Date() );

      window.localStorage.setItem("date", JSON.stringify(dates));

      alert("Your data is stored");
      }

      function showData() {
      var data = JSON.parse(window.localStorage.getItem("date"));
      console.log(data);
      $('#res').html(JSON.stringify(data));
      $(this).html('Update result');
      }

    < /script >

    HTML:

    <button id="btnSave"> Save Data </button>

      
    <button id="btnShow"> Show Data </button>

    I don't know what is happening because the code works well in jsfiddle, but for some reason any just does not work in my phonegap.

    My version of phonegap 5.3.6 cordova version 5.3.3

    Post edited by: Fang Kerry, I added my complete code is easier to see the problem (if any)

    jQuery has nothing to do with this, as far as I can tell (so not sure why it is in your title). The problem is that the result of JSON.parse (data) is not an array, what you think it is, it's a chain. The chain respond well to 'push '. I get that when you use this code in jsfiddle he is somehow coming out as a table, but I think it must be because of something done jsfiddle. When I do the same commands in the console of my browser, I get a string, not a table, so your problem.

    Instead:

    function deserializeDates() {
        var data = window.localStorage.getItem("date");
        var dates = []; // worst case, we'll return an empty array.
        if (data) {
            try {
                dates = JSON.parse(data);
                 // handle the case that dates is a single item and not an array
                if (!(dates instanceof Array)) {
                    dates = [dates];
                }
            } catch (err) {
                 // the stored dates failed to parse for some reason; you might want to do something about it
                 console.log("Failed to parse " + data);
             }
        }
        return dates;
    }
    
    function serializeDates(dates) {
        window.localStorage.setItem("date", JSON.stringify(dates));
    }
    
    function saveData(){
         var dates = deserializeDates();
        dates.push( new Date() );
         serializeDates(dates);
        alert("Your data is stored");
    }
    
    function showData() {
         var dates = deserializeDates();
        console.log(dates);
        ...
      }
    
  • JPEG does not work why?

    Hi, there, I'm new to the software 'flash' and I'm happy to use it. However, I have a fundamental problem.

    I can import jpeg fine images, and I can view on my stage; but when I do a "test" mode, I get instead of the red boxes, where the photo images must be. the sizes of the red boxes are the same as the original JPEGs, but they are completely red and no picture is visible.

    I have no idea how display them in my 'test' mode... What am I doing wrong? or what I forget? :(

    --s--

    Hi, rafiq and thanks! so much for your time.

    to answer your question, no, I'm not breaking the image apart (Ctrl + B); However, I have finally solved the problem. Well, I do not understand what the real problem was, but I found a way to fix it. at the beginning, I was just "insert object" in the "Edit" menu However, after the 'import' in the 'file' menu, everything worked fine. I could see jpeg, gif and png files in 'test' mode, while I couldn't before. they charge very well on the stage, but when in "fit" them as objects, they were not visible in "test mode". "import" works beautifully.

    I misunderstood the process, or something just does not work w / the program.

    but in any case, problem solved.

    Thank you!! Once again. If I have other questions, I'll be sure to post again.

    --s--

  • Just updated to IOS 10 and replace text does not work

    Just updated to IOS 10 and replace text does not work.  For example typing in omg should show oh my God. Has anyone else got this?

    I did the old thing: Disconnect to iCloud and sign back in. Unfortunately, he did not turn. The same thing happened on my iMac when upgrading to Mac OS Sierra - I lost all my text replacement. I also did Disconnect from iCloud and inback Panel . Unfortunately, it also didn't do the trick. Anyone know how to restore the replacement text. It is not has resided in the cloud?

  • I've just updated to el capitan. But protools does not work. How can I fix it?

    I've just updated to el capitan. But protools does not work. How can I fix it?

    Probably that Protools must be made day/upgrade. Have you checked for updates/upgrades?

    What version of Protools do you use?

  • I just recently upgraded to OS El Capitan.  Now, none of my movies to quicktime does not work.  I have the old version of Quick time 7 and it does not work either.  They do not convert.  Help?

    I just recently upgraded to OS El Capitan.  Now, none of my movies to quicktime does not work.  I have the old version of Quick time 7 and it does not work either.  They do not convert.  Help?

    VLC will play them?

    http://www.videolan.org/

  • I just bought a new mouse at the Apple store today.  It does not work.  I have a logitech keyboard, not an Apple (they are too small).  My previous mouse worked.  Why not another?

    I wrote this message 4 times now!  Here it is:

    I have a MacbookPro.  I just bought a new mouse today from the Apple Store, because the little door on the back of my old we kept popping off the power.  Now a new does not work with my keyboard and the Apple screen.  I use a Logitech keyboard, with which I have never had problems using the old mouse.  The batteries seem to work.  What is the problem?

    What is a wired mouse or a wireless mouse?

  • just installed norton 2012 'web safe' does not work with firefox

    I just installed Norton I / S 2012, bar tools Norton safe web and identity safe does not work with Firefox 7.0.1, but it DOES not work with my internet explore, what is wrong?

    All first please update your browser Firefox 8

    go to the Firefox button or Tools-Addons-extension and check if the extension of Norton is deactivate or activate

  • My photo booth app [version8.0 (806)] does not work. Sometimes, shows a message saying: "there is no camera connected" and others shows just a black or white screen. I can't do anything about it.

    My photo booth app [version8.0 (806)] does not work. Sometimes, shows a message saying: "there is no camera connected" and others shows just a black or white screen. I can't do anything about it.

    More than likely your MBP has a hardware problem that cannot be properly addressed at an Apple store genius bar.

    You can try to reinstall an OSX, but I doubt if that will be successful.

    Ciao.

  • Satellite A10 S203: sound does not work - just enough

    Hello!

    To my satellite A10 S203 sound does not work, I updated my sound card and the bios but nodifferents. Nothing in the system that says that I have something wrong whith my sound is just enough. I tried speakers headphones and challenging systemsounds, mp3, Auidi direct works cd... nothing.

    Any tip?
    [email protected]

    First check the status of the sound card in Device Manager.
    If there is a yellow climbing brand then you should try to reinstall the driver. (first remove it and after reboot, install a new)

    Have you checked the volume setting and the site of laptop? Eventually he s a very simple idea, but believe me, I read many comments here in the forum and a lot of guys forget this option simply.

Maybe you are looking for