Change middle mouse button function in Windows

12

4

Is there a way to assign a function (like cut/copy/paste) to the middle mouse button or scroll wheel in Windows 7?

Jay

Posted 2012-11-30T06:50:07.433

Reputation: 1 038

Answers

7

Try X-Mouse!

X-Mouse Button Control is a windows application to remap your mouse buttons. This software can handle, including things like copy, cut, and paste, volume control, media player control, send a custom keystroke sequence, launch your email (or any other) application, capture screen (or active window) image to clipboard, click-drag, and save and restore desktop icon positions.

Shail

Posted 2012-11-30T06:50:07.433

Reputation: 1 155

download from authors website http://www.highrez.co.uk/downloads/XMouseButtonControl.htm works with windows 10

– Tom Berghuis – 2019-12-29T02:13:36.653

8

Out of the box, no, the mouse button is used for putting the machine in scroll mode. If you have a Microsoft or Logitech mouse, there is some driver software (eg Intellipoint) that allows greater customization of the mouse buttons (including middle scroll button).

You can however find software (usually free) that gives you some of this functionality. The most popular of these is: X Mouse Button Control: http://www.highrez.co.uk/downloads/XMouseButtonControl.htm

mcalex

Posted 2012-11-30T06:50:07.433

Reputation: 2 315

3

Another possibility is to use AutoHotkey and assign the middle button to the action you want to perform. The example below sends a "back" signal when on a web page (to visit the previous page)

; Wheel click = back on navigator
~MButton::Send {Browser_Back}

WoJ

Posted 2012-11-30T06:50:07.433

Reputation: 1 580

Is it possible to not go back if the middle button was clicked on a tab header to close the tab? – thorn – 2016-09-07T19:50:50.663