Scrolling with up down arrow keys disables keyboard intermittently. HP laptop, Firefox 125.0.2 Win 11 pro

When browsing with Firefox, scrolling with the up/down arrow keys intermittently causes the keyboard to be disabled. Trackpad and touchscreen still function, but keyboar… (read more)

When browsing with Firefox, scrolling with the up/down arrow keys intermittently causes the keyboard to be disabled. Trackpad and touchscreen still function, but keyboard becomes completely disabled, requiring a reboot.

This ONLY happens while browsing with Firefox browser. I cannot deliberately reproduce this, but it happens frequently - up to several times a day. It seems to be tied to multiple key hits on the down and/or up keys. This only happens in Firefox, not in any other apps, including Visual Studio.

This is a brand new HP laptop. HP support says that this is a Firefox support issue because it only happens on Firefox and no other programs or scenarios.

Can you please help me to identify, troubleshoot and resolve this issue? I am a software/database engineer but this is a little outside the scope of my knowledge. I should be able to conduct any tests or provide any needed feedback at a useful level with only a reasonable level of hand holding. I suspect that Firefox is somehow inhibiting or disrupting the keyboard driver.


Environment: FIREFOX 125.0.2 64 bit

Windows 11 Edition Windows 11 Pro Version 23H2 Installed on ‎2/‎13/‎2024 OS build 22631.3447 Experience Windows Feature Experience Pack 1000.22688.1000.0

Keyboard drivers: HID Keyboard Device

   ETD.sys            15.56.2.26           ELAN Microelectronics Corp. 
   kbdclass.sys    10.0.22621.1 (Winbuild.160101.0800)       Microsoft
   kbdhid.sys        10.0.22621.1 (Winbuild.160101.0800)       Microsoft

Standard PS/2 Keyboard

   ETD.sys            15.56.2.26           ELAN Microelectronics Corp. 
   i8042prt.sys    10.0.22621.1 (Winbuild.160101.0800)       Microsoft
   kbdclass.sys    10.0.22621.1 (Winbuild.160101.0800)       Microsoft


HP Envy laptop model 17t-cw000 Processor 13th Gen Intel(R) Core(TM) i7-13700H 2.40 GHz Installed RAM 32.0 GB (31.7 GB usable) Product ID 00355-61386-37102-AAOEM System type 64-bit operating system, x64-based processor Pen and touch Touch support with 10 touch points

Asked by cliffb1 1 day ago

Last reply by zeroknight 1 day ago

I want to write an addon firewall but it fails

#!/bin/bash # Verzeichnis erstellen mkdir FoxyAddOnFirewall cd FoxyAddOnFirewall || exit # package.json erstellen cat <<EOF > package.json { "title": "Foxy A… (read more)

#!/bin/bash

# Verzeichnis erstellen
mkdir FoxyAddOnFirewall
cd FoxyAddOnFirewall || exit

# package.json erstellen
cat <<EOF > package.json
{
  "title": "Foxy AddOn Firewall",
  "name": "foxy-addon-firewall",
  "description": "A Firefox addon to control internet access for other addons",
  "author": "Your Name",
  "version": "1.0.0",
  "license": "MIT"
}
EOF

# background.js erstellen
cat <<EOF > background.js
var permissionManager = Components.classes["@mozilla.org/permissionmanager;1"]
                        .getService(Components.interfaces.nsIPermissionManager);

// Addon-Liste abrufen
function getAllAddons() {
    var {AddonManager} = Components.utils.import("resource://gre/modules/AddonManager.jsm", {});
    return new Promise(function(resolve, reject) {
        AddonManager.getAllAddons(function(addons) {
            resolve(addons);
        });
    });
}

// GUI aktualisieren
function updateUI() {
    getAllAddons().then(function(addons) {
        var addonList = document.getElementById("addon-list");
        addonList.innerHTML = ""; // Zurücksetzen der Liste

        addons.forEach(function(addon) {
            var listItem = document.createElement("li");
            listItem.textContent = addon.name;
            
            var blockButton = document.createElement("button");
            blockButton.textContent = "Block";
            blockButton.addEventListener("click", function() {
                blockInternetAccessForAddon(addon);
            });

            listItem.appendChild(blockButton);
            addonList.appendChild(listItem);
        });
    });
}

// Internetzugriff für ein bestimmtes Addon blockieren
function blockInternetAccessForAddon(addon) {
    var host = addon.getResourceURI("").host;
    permissionManager.remove(host, "allAccess");
    console.log("Internetzugriff für " + addon.name + " wurde blockiert.");
}

document.addEventListener("DOMContentLoaded", function() {
    updateUI(); // GUI beim Laden der Seite aktualisieren
});
EOF

# index.html erstellen
cat <<EOF > index.html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Foxy AddOn Firewall</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <h1>Foxy AddOn Firewall</h1>
  <p>Welcome to Foxy AddOn Firewall!</p>

  <h2>Installed Addons:</h2>
  <ul id="addon-list">
    <!-- Addon-Liste wird hier eingefügt -->
  </ul>

  <script src="background.js"></script>
</body>
</html>
EOF

# style.css erstellen
cat <<EOF > style.css
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  text-align: center;
}

h1 {
  color: #007bff;
}

h2 {
  margin-top: 20px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
EOF

# manifest.json erstellen
cat <<EOF > manifest.json
{
  "manifest_version": 2,
  "name": "Foxy AddOn Firewall",
  "version": "1.0",
  "description": "A Firefox addon to control internet access for other addons",
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "management"
  ],
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "icon.png"
  }
}
EOF

# Icon herunterladen
wget -O icon.png "https://img.icons8.com/ios-filled/50/000000/firewall.png"

# Installationsanweisungen anzeigen
echo "FoxyAddOnFirewall wurde erfolgreich initialisiert!"
echo "Um das Addon in Firefox zu installieren:"
echo "1. Öffnen Sie Firefox und geben Sie 'about:debugging' in die Adressleiste ein."
echo "2. Klicken Sie auf 'Dieses Firefox installieren' unter 'Temporäre Add-ons laden'."
echo "3. Navigieren Sie zum Verzeichnis 'FoxyAddOnFirewall' und wählen Sie die 'manifest.json' Datei aus."
echo "4. Das Addon wird nun installiert und kann verwendet werden."

Asked by j.sobiech 2 days ago

Last reply by jscher2000 - Support Volunteer 2 days ago

Microsoft Windows 11 user - font size for display resolution 3456 x 2160

I have to put my face within inches of the screen and strain to see the text in Firefox browser menus, tabs, and search bars. How do I adjust the font size? I'm not a p… (read more)

I have to put my face within inches of the screen and strain to see the text in Firefox browser menus, tabs, and search bars. How do I adjust the font size?

I'm not a programmer. If I need to enter code please be pedantic about descriptions of how to do that.

Asked by maxjen 2 days ago

Last reply by cor-el 2 days ago

Repetitive update request

I keep getting this message that pops up in a private window to restart to keep using firefox. Everytime I click restart Firefox, it closes my tabs and opens them again. … (read more)

I keep getting this message that pops up in a private window to restart to keep using firefox. Everytime I click restart Firefox, it closes my tabs and opens them again. However, 5 minutes later the window pops up again. Even after repeated attempts of updating, even doing a full restart on the computer, Firefox continues to send this window to me. The private window in the bar says about:restartrequired.

I've tried uninstalling Firefox with a fresh install as well as doing a Refresh of Firefox. Neither seem to solve this problem.

Asked by rxs621 1 week ago

Last reply by NoahSUMO 3 days ago

Amazon not working

I was using Amazon just fine a few days ago. When I tried to open an amazon link yesterday, I got the message: Secure Connection Failed. I tried updating my browser and c… (read more)

I was using Amazon just fine a few days ago. When I tried to open an amazon link yesterday, I got the message: Secure Connection Failed. I tried updating my browser and clearing my cache and cookies. Please fix

Asked by cherryblossomshadow3 3 days ago

Last reply by jonzn4SUSE 3 days ago

TLS Errors When Launching Webinars

In recent attempts to join a few webinars I am now getting more and more "TLS Errors." I have noticed that many of the solutions to this problem involve actions that do n… (read more)

In recent attempts to join a few webinars I am now getting more and more "TLS Errors." I have noticed that many of the solutions to this problem involve actions that do not solve the problem but create larger issues. Do you have a solution that works safely? I am forced to use Windows 7 unfortunately due to work systems and a long story. I think this is my primary problem but I have to keep using it until the bitter end with this PC.

I appreciate your kind help. Thanks, Clay

Asked by claytudor 4 days ago

Last reply by cor-el 3 days ago

Washington Post articles are only partially displaying (fully displaying in EDGE)

On: HP OMEN Laptop Processor 12th Gen Intel(R) Core(TM) i5-12500H 2.50 GHz Installed RAM 16.0 GB (15.7 GB usable) System type 64-bit operating system, x64-based process… (read more)

On: HP OMEN Laptop Processor 12th Gen Intel(R) Core(TM) i5-12500H 2.50 GHz Installed RAM 16.0 GB (15.7 GB usable) System type 64-bit operating system, x64-based processor Edition Windows 11 Home Version 23H2 OS build 22631.3447 124.0.2 Firefox Release, April 2, 2024

Since the 2 APR 2024 FF update, Washington Post articles are not displaying fully. When opened, the article flashes the full version, then only displays the top photo and the first two paragraphs. When opened in EDGE, all articles open fully as expected. This issue is only occurring in FF.

Actions taken: Cleared cache, same result.

Please advise.

Asked by bbcgrrrl 2 weeks ago

Last reply by zeroknight 1 week ago

support restore all tabs

Once updated Firefox all old tabs didn't open ( and it was not possible to restore them anymore). So I'd like to restore all old tabs of yesterday session. Really importa… (read more)

Once updated Firefox all old tabs didn't open ( and it was not possible to restore them anymore). So I'd like to restore all old tabs of yesterday session. Really important for my work. Looking forward to hearing from you asap. Regards, Orlando.

Asked by mhjzxcmcmr 2 weeks ago

Last reply by cor-el 2 weeks ago

I am afraid to update to Firefox 124 since I don't want the new default of ordering tabs by how recently they were opened to kick in before I have a chance to preserve the existing tab order.

I am afraid to update to Firefox 124 for fear of losing the existing order of 100s of open tabs if the default setting of ordering tabs by "Recently Opened" kicks in befo… (read more)

I am afraid to update to Firefox 124 for fear of losing the existing order of 100s of open tabs if the default setting of ordering tabs by "Recently Opened" kicks in before I have a chance to change the setting to "Tab Order". Can anyone help me? I'd like to upgrade to 124 if I can do so safely!

Asked by PLS1 2 weeks ago

Last reply by jscher2000 - Support Volunteer 2 weeks ago

Download does Not Download..

Due to repeated issues over a week, I uninstalled Firefox days ago. Tried to Reinstall it repeatedly on same device several times. It was working before..BUT it keeps sho… (read more)

Due to repeated issues over a week, I uninstalled Firefox days ago. Tried to Reinstall it repeatedly on same device several times. It was working before..BUT it keeps showing its downloaded on Settings but Firefox download page keeps showing "DOWNLOAD" Tried several times. Not my computer. Nothing works to resolve it.. Windows 11..

Asked by Linda 2 weeks ago

Last reply by jscher2000 - Support Volunteer 2 weeks ago

Firefox too big to catch the top bar after using bigger screen

Can someone please answer how to reset firefox size after you've been using a bigger screen and go back to the laptop the top bar is lost way up and I cant catch it to mo… (read more)

Can someone please answer how to reset firefox size after you've been using a bigger screen and go back to the laptop the top bar is lost way up and I cant catch it to move it to resize the firefox window. Using Fn and F11 to go into maximize mode doesnt help me at all cuz I end up in full screen on the FHD screen but cant grab and drag the window to resize it again - and please NO comments about using FN and F11 again. This is an issue thats been since years - cant figure out why ppl who are tryin to help think others dont know the difference between maximization and the window being bigger than the laptop screen and being lost. So FIREFOX key-shortcut for window size reset URGENT PLEASEEEE - Im having this issue couple times a week. To fix it I gotta go again to the bigger screen reduce the size of the window and then disconnect - which is soooo horrible.

Asked by maple22 2 weeks ago

Last reply by cor-el 2 weeks ago

Delete History fails to do a complete job

I've been noticing that when I click History > Clear Recent history, after clicking and going back to History, it hasn't removed everything. I have Firefox on my Andro… (read more)

I've been noticing that when I click History > Clear Recent history, after clicking and going back to History, it hasn't removed everything. I have Firefox on my Android phone which is set to clear history upon close. For for unknown reasons, its leaving sites from both desktop and phone apps after clearing.

I'm running Firefox v 115.9.1esr on my Mac.

Any ideas?

Asked by jontalk 2 weeks ago

Last reply by zeroknight 2 weeks ago

website shows a Mozilla error

Hi there, my name is Alvimutmex. Every time a webpage loads with the Mozilla browser, a "not supported" message appears. Upon examining the settings, I found that Mozilla… (read more)

Hi there, my name is Alvimutmex. Every time a webpage loads with the Mozilla browser, a "not supported" message appears. Upon examining the settings, I found that Mozilla has to be updated. Would you kindly assist me with updating Mozilla? For example, I receive an error notification when I try to open (https://pdfmedicalbooks.com/).

Asked by Alvit Ubit 2 weeks ago

Last reply by zeroknight 2 weeks ago

Firefox won't open log in pages

I just bought a new laptop and downloaded Firefox as I have used it for years. Although I imported my passwords and they are correct it will not log in to sites I need fo… (read more)

I just bought a new laptop and downloaded Firefox as I have used it for years. Although I imported my passwords and they are correct it will not log in to sites I need for work. It isn't telling me I have the wrong pw or id, it just does nothing.

I have updated windows, I have uninstalled and reinstalled....I don't know what else to do...any suggestions?

thanks

Asked by Lynnkeogh 2 weeks ago

Last reply by zeroknight 2 weeks ago