Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

mojoxp

macrumors member
Original poster
May 18, 2006
90
0
Is there a way to disable the Mighty Mouse squeeze click in Windows 7? I've been pouring over the options and haven't found it in any of the dialogs.
 
Figured out a way using AutoHotkey. Basically just re-map mouse button 4 to nothing.


Script looks like this:
Code:
; AutoHotkey Version: 1.x
; Language:       English
; Platform:       Win9x/NT
;
; Script Function:
;	Disable the 4th mouse button (squeeze)
;

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
XButton1::
return

Compiled that into an exe and added it as part of a login script.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.