Can I remap my Notebook's TouchPad Buttons to a Keyboard Keystroke?

midorlo

Specifically, I want them to invoke my Browser's BACK-/FORWARD-Page functionality

Anaksunaman

On Windows, you may be able to use a program such as AutoHotkey to achieve this.

Caveat

If your touch pad sends "regular" keystrokes (ex. standard left and right mouse button signals), there is likely nothing to differentiate them from the same keystrokes produced by another device (e.g. your mouse). Thus, you will likely need an additional modifier key (not just e.g. the left/right mouse buttons).

Example

The AutoHotkey script below maps Alt + Left Mouse Button (!LButton) and Alt + Right Mouse Button (!RButton) to the standard Windows media keys for Browser Back and Browser Forward.

Browser_Mouse_Buttons.ahk

!LButton::Send {Browser_Back}
!RButton::Send {Browser_Forward}

Notes

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I map keyboard buttons to my mouse buttons?

From Dev

How can I remap a keyboard key?

From Dev

How can I get multitouch enabled on my Sentelic touchpad (msi x350 notebook)?

From Dev

How can I get multitouch enabled on my Sentelic touchpad (msi x350 notebook)?

From Dev

How can I remap my OSX keyboard without using third-party programs?

From Dev

I want to remap my keyboard to work like my Macbook Air, but I have tried and can't seem to - how do i do it?

From Dev

How to reassign touchpad buttons to keyboard?

From Dev

How do I tell what type of touchpad is in my notebook

From Dev

How do I automatically remap buttons on my mouse at startup?

From Dev

Can a laptop's screen, keyboard and touchpad be used for a desktop?

From Dev

How can I disable my Lenovo touchpad with i3?

From Dev

Desactivating touchpad with one keystroke

From Dev

How can I change some keystroke on iOS 7 default keyboard? Like Slack

From Dev

Broke one letter key of my laptop's keyboard and want to remap it on the right Window's key

From Dev

How can I personalize my MacBook Pro Touchpad?

From Dev

How can I personalize my MacBook Pro Touchpad?

From Dev

How can I use my touchpad while typing in Ubuntu 18.04?

From Dev

Windows 10 touchpad doesn't work after I use my keyboard for about 3 seconds

From Dev

Can't remap keys on a Microsoft Keyboard with HWDB

From Dev

Keyboard and touchpad stopped working after battery drain in Samsung notebook

From Dev

How can I force my keyboard to be up on my program's start in Swift?

From Dev

Keyboard's buttons

From Dev

Keyboard's buttons

From Dev

I want to clean my HP HDX 16's keyboard, can I remove the keys?

From Dev

How can I use my keyboard as a mouse?

From Dev

How can I fix my keyboard layout?

From Dev

How can I fix my keyboard layout?

From Dev

How can I keep my keyboard clean?

From Dev

How can I use my keyboard as a mouse?

Related Related

  1. 1

    How can I map keyboard buttons to my mouse buttons?

  2. 2

    How can I remap a keyboard key?

  3. 3

    How can I get multitouch enabled on my Sentelic touchpad (msi x350 notebook)?

  4. 4

    How can I get multitouch enabled on my Sentelic touchpad (msi x350 notebook)?

  5. 5

    How can I remap my OSX keyboard without using third-party programs?

  6. 6

    I want to remap my keyboard to work like my Macbook Air, but I have tried and can't seem to - how do i do it?

  7. 7

    How to reassign touchpad buttons to keyboard?

  8. 8

    How do I tell what type of touchpad is in my notebook

  9. 9

    How do I automatically remap buttons on my mouse at startup?

  10. 10

    Can a laptop's screen, keyboard and touchpad be used for a desktop?

  11. 11

    How can I disable my Lenovo touchpad with i3?

  12. 12

    Desactivating touchpad with one keystroke

  13. 13

    How can I change some keystroke on iOS 7 default keyboard? Like Slack

  14. 14

    Broke one letter key of my laptop's keyboard and want to remap it on the right Window's key

  15. 15

    How can I personalize my MacBook Pro Touchpad?

  16. 16

    How can I personalize my MacBook Pro Touchpad?

  17. 17

    How can I use my touchpad while typing in Ubuntu 18.04?

  18. 18

    Windows 10 touchpad doesn't work after I use my keyboard for about 3 seconds

  19. 19

    Can't remap keys on a Microsoft Keyboard with HWDB

  20. 20

    Keyboard and touchpad stopped working after battery drain in Samsung notebook

  21. 21

    How can I force my keyboard to be up on my program's start in Swift?

  22. 22

    Keyboard's buttons

  23. 23

    Keyboard's buttons

  24. 24

    I want to clean my HP HDX 16's keyboard, can I remove the keys?

  25. 25

    How can I use my keyboard as a mouse?

  26. 26

    How can I fix my keyboard layout?

  27. 27

    How can I fix my keyboard layout?

  28. 28

    How can I keep my keyboard clean?

  29. 29

    How can I use my keyboard as a mouse?

HotTag

Archive