Code Monkey home page Code Monkey logo

Comments (4)

randyrants avatar randyrants commented on May 24, 2024

Sorry but my app doesn't do the remapping: it exposes a Registry Key that Windows uses to remap keys and even then, Windows remaps the key system-wide. If your re-mappings are not working in FireFox and only FireFox, I think the problem is with FireFox.

from sharpkeys.

SoggyBurritoVR avatar SoggyBurritoVR commented on May 24, 2024

It must be a Firefox based issue, which is unfortunate.

Unsure how I would go by figuring out what specifically about Firefox messes with the registry key override.

Looking at it now, Firefox seems to also ignore the override when pressing the specified key.

I'll try to take a look if Firefox has it's own registry key that overrides whatever registry key your software modifies.

from sharpkeys.

MtnDewritos avatar MtnDewritos commented on May 24, 2024

If you use a keyboard checker website in Firefox you can see that certain keys are reported incorrectly, this is not an issue in google chrome.
Using this simple script you can see exactly which scan codes are reported in Firefox/Chrome:

<html>

<script>
document.onkeydown = function(e) {
    if (!e) var e = window.event;
    if (e.keyCode) keycode = e.keyCode;
    else if (e.which) keycode = e.which;
    alert(keycode);
}
</script>

<body>
</body>
</html>

from sharpkeys.

SoggyBurritoVR avatar SoggyBurritoVR commented on May 24, 2024

I used your suggestion MtnDewritos, and it shows the rebound key going off at random times when typing/using any key.

This only happens in Firefox.

Really unsure what I can do to fix this issue locally, if you have any idea, please let me know.

from sharpkeys.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.