In last 62 hours cursor stopped dead more than 20 times; there was no way out, except to turn off computer

For last 3 days the problem with Firefox (but not with IE, for example) is as follows:
in the middle of almost every session the cursor suddenly stops; there is no reaction
to all my efforts to get it to move. The only way out is to press the button and to turn off
the computer. The problem is not connected with any particular website.
For the first time the cursor stopped some months ago. I did not know what to do, how
"to make" Firefox to react. Probably I could use the keyboard somehow... But I use a
portable computer, and I am still a very unskilled user. (I use the keyboard only for
writing ). Afterwards I had the problem again just a couple of times - till the October
the 18. It started without any obvious reason. I must stress once again: the problem
is not connected any particular website. For example: to-day the cursor stopped
while I was looking through my e-mail.

Hello andrejs
try to disable hardware acceleration in firefox from : Firefox button > Options > Options > Advanced > General > Browsing: '''UNCHECK''' "Use hardware acceleration when available"
[https://support.mozilla.org/en-US/kb/troubleshoot-extensions-themes-to-fix-problems#w_turn-off-hardware-acceleration Turn off hardware acceleration]
if the above does not solve the issue check it in [https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Safe Mode], '''''select "Start in Safe Mode"''''' and see if this happen again, if not see: [https://support.mozilla.org/en-US/kb/troubleshoot-extensions-themes-to-fix-problems Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]
thank you
Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

Similar Messages

  • Since I downloaded the recent software update, my battery charge lasts about 1/10 as long.  Is there a new option that I can turn off that might be draining my charge?

    Since I downloaded the recent software update, my battery charge lasts about 1/10 as long.  Is there a new option that I can turn off that might be draining my charge?

    There are just too many settings and combinations of apps and settings  that affect battery use. Look through past posts for references to battery and read through them to get ideas. Some recent ones..  Turn down brightness and set Bluetooth off.

  • HT4972 Did I just lose everything on my IPAD for the last year because it said to update it, not giving an option to back it up first? Its updating with ITunes now but under the RESTORE option.  There was no way out of this.

    My IPAD2 had a pop up message that an update is available, to close or click on details, so I clicked on details. It took me to an upgrade box, no back up options. I clicked to upgrade it.  It downloaded for awhile, then turned off, and when it turned back on, it directed me to plug into my ITUNES with the USB adapter, which I did.  When ITunes came up, it said I had to restore it before I could use ITUnes.  Again, no other options.  I am worried that I just lost everything on my IPAD2 for the last year, apps, photos, documents, settings, email, etc.  It is still downloading after 30 minutes.  Is everything gone and truly back to factory settings?  If so there was no warning for this at all, I'll never get everything back.

    I'm not sure what happned either but If you are doing this via iTunes, iTunes should have backed up the iPad first. It can take a good bit of time when you update with iTunes on your computer because iTunes downloads and installs the entire iOS all over again. If you are running iOS 5 on the iPad, and you will be now, you can update OTA via WiFi in the future and the process takes far less time since you will only be downloading an incremental update.
    If you are syncing on a regular basis with iTunes, you should have a recent backup. In the worst case scenario, you should be able to restore from the backup. And as stated aboce, you can download all apps again and virtually all purchased content from iTunes (if you live in the U.S.) and you can always sync your iTunes library back to the iPad.
    Let the update finish and see where you are then. Come back if you need help.

  • HT1459 After updating ITunes, it, ITunes started loosing my music files and stopped playing more than one song at a time.What now?

    After updating ITunes, it, ITunes started loosing my music files and stopped playing more than one song at a time also there would be duplicate songs in the same folders.What now?

    Sound like something messed up somehow. Maybe you can consider reinstalling the drivers again? @28.86.2.0

  • I have started migration système to transfert from hold Macbook pro to New MacBook air application starter successfully for several hours. But since more than 3 hours I got the message transferring Time zone paramètres with time left less than 1 minute.

    Hi
    I have started migration système to transfert from hold Macbook pro to New MacBook air
    Application starter successfully for several hours.
    But since more than 3 hours I got the message "transferring Time zone paramètres " with time left less than 1 minute.
    Any recommendation or suggestion to solve it ?
    Many tanks

    If it has run for 3 hours it's probably done and you can quit Migration Assistant and reboot the new computer. In the future rather than using Migration Assistant I would recommend using Startup Assistant which tends to be a bit more reliable and does not create a new user account as MA does. If  you're interested here is an article explaining Setup Assistant tips.
    Roger

  • My HP Office jet Pro 8500A all in one printer-A9​10a has stopped printing more than 1 or 2 pages

    My printer (wireless) has all of a sudden stopped printing more than 2 pages from a multiple page document. Any suggestions/

    HI RODA80,
    Welcome to the HP support forums.  I understand that when you are printing a multiple page document on your Officejet Pro 8500a that only the first 2 pages print.
    To better understand the issue would you please provide some further information:
    1)    What operating system are you using (Windows 7, Mac 10.8, or Windows 8, etc)?
    2)    Is this happening for all multiple page documents or just one?
    3)    Has a default of only printing the first 2 pages been accidentally set?
    Thank you.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Change this code to retrieve more than one row in the drop out menu

    How I can change this code, it only works when the cursor retrieves one row
    like this
    201410
    Fall 2013
    If it returns 2 rows, I only get the fir one in the drop out menu 
    201410
    Fall 2013
    201420
    Spring 2014
    I try to put a loop but it does not work..
    I need to be able to display any term that is retrieve by the cursor  (can be more than one)
    Term Fall 2013
    Spring 2014
    PROCEDURE p_enter_term
    IS
    v_code  stvterm.stvterm_code%TYPE;
    v_desc   stvterm.stvterm_desc%TYPE;
    CURSOR select_term_c IS
    SELECT
    stvterm_code,
    stvterm_desc
    from
    stvterm,
    sobterm
    where
    sobterm_dynamic_sched_term_ind = 'Y'
    and sobterm_term_code = stvterm_code;
    select_term_rec  select_term_c%rowtype;
    BEGIN
    --check for open cursor
    if select_term_c%isopen
    then
    close   select_term_c;
    end if;
    open    select_term_c;
    fetch select_term_c into v_code,v_desc; 
    HTP.p ('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
       HTP.p ('<FORM ACTION="/test/btsewl.p_sel_crse" METHOD="POST" onSubmit="return checkSubmit()">');
       HTP.p ('<TABLE  CLASS="dataentrytable" summary="This layout table is used for term selection."width="50%"><CAPTION class="captiontext">Search by Term: </CAPTION>');
       HTP.p ('<TR>');
       HTP.p ('<TD class="dedefault"><LABEL for=term_input_id><SPAN class="fieldlabeltextinvisible">Term</SPAN></LABEL>');
       HTP.p ('<SELECT NAME="p_term" SIZE="1" ID="term_input_id">');
       HTP.p ('<OPTION VALUE="'||v_code||'">');
       HTP.p (v_desc);
        HTP.p ('</OPTION>');
       HTP.p ('</SELECT>');
       HTP.p ('</TD>');
       HTP.p ('</TR>');
       HTP.p ('</TABLE>');
       HTP.p ('<BR>');
       HTP.p ('<BR>');
       HTP.p ('<INPUT TYPE="submit" VALUE="Submit">');
       HTP.p ('<INPUT TYPE="reset" VALUE="Reset">');
       HTP.p ('</FORM>');
    END;

    You are using the Eclipse Dali plugin to generate tables from your entities, not the EclipseLink JPA provider at runtime, so the settings in your persistence.xml are ignored.  The documentation for the Dali table Wizards state it will drop and create tables.  If you want to use the EclipseLink persistence settings to just create tables, access your persistence unit in a test case or deployment. 

  • Hello. I have an iPad2, and iMovie software. My main problem, for the moment, is the length of the videos: I can´t create a video with more than 56 seconds. When I try, the app shuts off... Can anyone help me?

    Hello. I have an iPad2, and iMovie software. My main problem, for the moment, is the length of the videos: I can´t create a video with more than 56 seconds. When I try, the app shuts off... Can anyone help me?

    Sorry. We can't help you. It's no longer an iPhone. Apple won't touch it.
    Take it to whoever replaced the screen and see if they can help you.
    iPhones are not user servicable and Apple does not sell iPhone parts at all. I'd be surprised if you were actually able to back it up at this point. It sounds like it's completely borked.

  • I am using iPhoto 11 mail and cannot add more than one recipient in the 'to' line.  When I put a comma in, the recipient's address is deleted.  If I use ' ' with more than one recipient the save grays out.  Any thoughts?

    am using iPhoto 11 mail and cannot add more than one recipient in the 'to' line.  When I put a comma in, the recipient's address is deleted.  If I use '< >' with more than one recipient the save grays out.  Any thoughts?

    I figured it out.  I needed to fix some errors in my account information.  It works fine now.

  • Every time my lg g pad 8.3 lte tablet is turned off it reverts the saving email attachment back to internal storage.  Every time I turn on, I change it back to save to SD card.  It stays that way until it is turned off for more than a minute.  If I do a r

    Every time my lg g pad 8.3 lte tablet is turned off it reverts the saving email attachment back to internal storage.  Every time I turn on, I change it back to save to SD card.  It stays that way until it is turned off for more than a minute.  If I do a restart, it holds the setting, but loses it when it is shut down for any period of time.  Does anyone else have this issue?  The setting holds for photos taken with camera storing to SD card.  Only the email attachment setting does not hold.

    I believe that system has a hall sensor on it to detect when the lid is closed so it can put the system to sleep and/or disable the monitor so it can be used with an external monitor only. If the sensor is marginal or has a bad cable, it may intermittently cut the monitor on and off, and may likewise put the system to sleep. One way to check would be to plug in an external monitor and if the laptop's screen cuts off or doesn't show up, start using the trackpad and press on a non-typing key like the shift key. If the external display suddenly pops and becomes active while the laptop display remains black, it's probably a problem with the sensor or the cable/connection. You might be able to fool the sensor into kicking on and off by moving a magnet over it. It's located on the left had side of the base with the unit opened up, and right over the audio output plug.
    I know of some people that put a small magnet right over the hall sensor's location so the laptop display turns off and they use the system with an external monitor, keyboard, and mouse. If fooling with magnets, make sure they're small and don't get them close to the hard drive because a strong magnet can wipe them out.
    I don't know if this will help you much, but it might.

  • Hey is the new update going to let people facetime more than one person like 3-way? you'd think apple would have done this by now

    hey is the new update going to let people facetime more than one person like 3-way? you'd think apple would have done this by now

    If there is we will not learn about until the update is released. Speculation about such is not permitted in the forums.

  • I upload all of my photos from my iphone 5 onto my macbook air to get more space on my phone, and now whenver i try to upload it says there is no more storage or there was a problem transferring a picture. what can I do to get more space onto my iphoto?

    i upload all of my photos from my iphone 5 onto my macbook air to get more space on my phone, and now whenver i try to upload it says there is no more storage or there was a problem transferring a picture. what can I do to get more space onto my iphoto? I've tried putting the pictures on flashdrives, but iphoto would no tlet me transfer.

    I don't know how large the SSD (solid state hard drive) is, or how big your iPhone 5 is, but with some iPhones having 64GB and some Airs having as little as 64GB and some having as much as 512GB it's not hard to see how storing the contents of your iPhone 5 on your Macbook Air could run you out of space.
    Go to the Macbook Air and bring up a finder window and pull the Go menu down and go to the Computer. Right click on the Macintosh HD and select get info. See if there is any available space on the MacBook Air. If not you are out of SSD space (you're storing more on your Macbook Air than it has storage for). I'm not sure if iTunes can store its library on an external hard drive or quite how you would make that happen. But even if you managed that, when the hard drive was disconnected, you would lose access to your library. Using a smart media card might be possible (I don't know) but it would probably be irritatingly slow. If you have a small Air and a big iPhone you might just have to find a different computer to sync to. Just remember a 64GB iPhone is a big chunk of SSD for a Macbook Air. I did it with my previous and my current Air but even my previous one had 256GB and I really just fit.

  • Creating project as Disc Image after 1 1/2 hours it appeared to be finished but there was message that there was a multiplex error.  Checked and no yellow triangles, music on computer,  any ideas.

    Creating project as Disc Image after 1 1/2 hours it appeared to be finished but there was message that there was a multiplex error.  Checked and no yellow triangles, music on computer, and all resources on computer,  any ideas??

    Hi
    And
    • free space on Start-Up hard disk ? How Much ?
    • Brand and type of DVD used
    • Burn Speed ?
    • Did You try to first do a "Save as a DiskImage" ? If so - Did it work ?
    Yours Bengt W

  • If there was a way to stop the pending wipe

    I lost my Ipad  and  i put a wipe on it, however it till  offline so it is still pending. I wondering if there was a way to stop the pending wipe? THANKS FOR ANY COMMENTS!!

    No, I don't believe you can, you can however restore it after the wipe from your iCloud back up.

  • How to use cursor data in more than one location in form?

    hi all.
    is it possible to make cursor as global or public in the form so i can use its data in more than location for testing like in buttons triggers.
    for example:
    if i declare the following cursor in "WHEN-NEW-FORM-INSTANCE" trigger
    CURSOR cur
    IS
    SELECT ID, NAME
    FROM PERSON;how can i use this cursor in other triggers in other buttons in the form?
    thanks

    kareem wrote:
    now i have the old data- from cursor and the new- from tableNo, you have not. When you open the cursor you get the state of the database at the current SCN.
    If you
    - open your cursor, fetch the data and close the cursor
    - update some data
    - open your cursor, fetch the data and close the cursor
    you will get the updated data from your cursor the second time (unless your update isn't a uncommited autonomous transaction but I wouldn't go down that route).
    You will have to save your data somewhere or you might take a look at flashback: http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/consist.htm#i20759
    cheers

Maybe you are looking for

  • I can not get sound out of the HDMI output on my mac mini. happened before after unpluging headphone and had to change some hrz number.

    I have had this problem before. I just cant remember how I fixed it. I am not getting any sound from the HDMI output. Everything is selected properly and volumes are set correctly. Last time I had to change a megahrz thing and thats where I am stumpe

  • MacBook won't boot after updates

    My girlfriend has a black 13" MacBook and we ran updates on it today and after it had installed all the updates and it went to reboot it now won't boot up. It turns on and you see the apple logo but then it comes up with a window saying that it needs

  • E-Brochure/E-Commerce

    I am developing a website to sell yachts and I would like to give my customers the ability to customise the spec of the yacht they would like to purchase and get a total cost showing all the options they have selected. Can anybody tell me how to do t

  • I've created a button with an looped animation...

    ... that I want to only play when mousedover, and stop (hide) on mouseout. Right now it does stop and start once I mouseover the button the first time. But when it loads it's playing not hidden. Here's the code I have at this point: MouseOver var myS

  • FTP problem in Muse 2014

    I get this error and my informationis correct. HELP