<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://deltanine.net/mw/index.php?action=history&amp;feed=atom&amp;title=Logitech_Double_Mouse_Click_Fix_with_AutoHotKey</id>
	<title>Logitech Double Mouse Click Fix with AutoHotKey - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://deltanine.net/mw/index.php?action=history&amp;feed=atom&amp;title=Logitech_Double_Mouse_Click_Fix_with_AutoHotKey"/>
	<link rel="alternate" type="text/html" href="https://deltanine.net/mw/index.php?title=Logitech_Double_Mouse_Click_Fix_with_AutoHotKey&amp;action=history"/>
	<updated>2026-09-13T01:37:00Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.32.1</generator>
	<entry>
		<id>https://deltanine.net/mw/index.php?title=Logitech_Double_Mouse_Click_Fix_with_AutoHotKey&amp;diff=1226&amp;oldid=prev</id>
		<title>Chris: Created page with &quot;*Install AutoHotkey https://autohotkey.com/ *Right-click on Desktop, New, AutoHotkey script *Right-click on newly created icon, Edit script *Paste the following after the text...&quot;</title>
		<link rel="alternate" type="text/html" href="https://deltanine.net/mw/index.php?title=Logitech_Double_Mouse_Click_Fix_with_AutoHotKey&amp;diff=1226&amp;oldid=prev"/>
		<updated>2016-09-14T21:52:15Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;*Install AutoHotkey https://autohotkey.com/ *Right-click on Desktop, New, AutoHotkey script *Right-click on newly created icon, Edit script *Paste the following after the text...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;*Install AutoHotkey https://autohotkey.com/&lt;br /&gt;
*Right-click on Desktop, New, AutoHotkey script&lt;br /&gt;
*Right-click on newly created icon, Edit script&lt;br /&gt;
*Paste the following after the text already there:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
RegRead minDelay, HKCU, Software\MouseDebouncer, MinDelay&lt;br /&gt;
if ErrorLevel&lt;br /&gt;
	minDelay := 100  ; Default setting.&lt;br /&gt;
&lt;br /&gt;
#NoTrayIcon  ; Hide initial icon.&lt;br /&gt;
Menu Tray, Icon, %A_WinDir%\System32\main.cpl  ; Set icon.&lt;br /&gt;
Menu Tray, Icon  ; Show icon.&lt;br /&gt;
Menu Tray, NoStandard&lt;br /&gt;
Menu Tray, Add, &amp;amp;Configure, TrayConfigure&lt;br /&gt;
Menu Tray, Add, E&amp;amp;xit, TrayExit&lt;br /&gt;
Menu Tray, Default, &amp;amp;Configure&lt;br /&gt;
Menu Tray, Click, 1  ; Single-click to configure.&lt;br /&gt;
Menu Tray, Tip, Mouse Debouncer&lt;br /&gt;
&lt;br /&gt;
~LButton::&lt;br /&gt;
; Do nothing at all -- click has not been blocked.  This hotkey has&lt;br /&gt;
; already achieved its purpose by causing A_PriorHotkey etc to be set.&lt;br /&gt;
return&lt;br /&gt;
&lt;br /&gt;
#If A_PriorHotkey != &amp;quot;&amp;quot; &amp;amp;&amp;amp; A_TimeSincePriorHotkey &amp;lt; minDelay&lt;br /&gt;
LButton::&lt;br /&gt;
SoundPlay *-1  ; Play a sound to indicate the click has been blocked.&lt;br /&gt;
return&lt;br /&gt;
&lt;br /&gt;
TrayConfigure:&lt;br /&gt;
prompt := &amp;quot;Enter the minimum time between clicks, in milliseconds.`n&amp;quot;&lt;br /&gt;
		. &amp;quot;Any double-clicks faster than this will be blocked.&amp;quot;&lt;br /&gt;
Loop&lt;br /&gt;
{&lt;br /&gt;
	InputBox newMinDelay, Mouse Debouncer, %prompt%,,,,,,,, %minDelay%&lt;br /&gt;
	if ErrorLevel  ; Cancelled?&lt;br /&gt;
		return&lt;br /&gt;
	if (newMinDelay+0 &amp;gt;= 10 &amp;amp;&amp;amp; newMinDelay &amp;lt;= 1000)	 ; Valid?&lt;br /&gt;
		break&lt;br /&gt;
	if (A_Index = 1)&lt;br /&gt;
		prompt .= &amp;quot;`n`nPlease enter a number between 10 and 1000.&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
minDelay := newMinDelay&lt;br /&gt;
if (minDelay = 100)&lt;br /&gt;
	RegDelete HKCU, Software\MouseDebouncer&lt;br /&gt;
else&lt;br /&gt;
	RegWrite REG_DWORD, HKCU, Software\MouseDebouncer, MinDelay, %minDelay%&lt;br /&gt;
return&lt;br /&gt;
&lt;br /&gt;
TrayExit:&lt;br /&gt;
ExitApp&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*Save and exit&lt;br /&gt;
*Right-click on script, Run Script&lt;br /&gt;
*There should now be a system tray icon where you can select a delay time to ignore too-fast double clicks - 50 is a good place to start&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
		
	</entry>
</feed>