My mouse double clicks
#1
WhiteCrosses
Posted 25 September 2009 - 01:12 PM
#2
BoBo³
Posted 25 September 2009 - 02:20 PM
#3
WhiteCrosses
Posted 25 September 2009 - 03:14 PM
#4
Posted 25 September 2009 - 03:29 PM
#5
Posted 27 September 2009 - 11:35 PM
LButton:: Click Sleep,100 Return
#6
Posted 28 September 2009 - 12:08 AM
Not a good approach.LButton:: Click Sleep,100 Return
Try this:
Timer := A_TickCount
Return
$LButton::
If ( A_TickCount-Timer < 100 ) ; change this as desired
Return
Timer := A_TickCount
Click down
Return
$LButton Up::Click up
#7
Posted 08 October 2012 - 12:06 AM
#8
Guests
Posted 08 October 2012 - 02:16 AM
; ahk_l
#if MultiClick(2, 200)
LButton::return
#if
MultiClick(neededClickCount, clickTimeout)
{
static clickCount, priorHotKey, priorTickCount
return (clickCount := (A_ThisHotkey == priorHotKey && A_TickCount-priorTickCount <= clickTimeout)? clickCount+1 : 0) = neededClickCount-1
, priorHotKey := A_ThisHotkey, priorTickCount := A_TickCount
}
#9
Posted 09 October 2012 - 01:19 AM
#10
Posted 31 October 2012 - 07:44 PM
I tried your script few days ago, it works perfectly for my steel series ikari, which has all its three major buttons bugged.
However, I find very annoying to have this debug pop up. I managed to disactivate it by unchecking the checkbox, but everytime I start my commputer, it's back on. How can i edit the script, or do whatever is needed to prevent that?
Thanks again for the great work!
#11
Posted 01 November 2012 - 12:19 PM
I managed to disactivate it by unchecking the checkbox, but everytime I start my commputer, it's back on.
...sorry about that. I have changed Debugging to default to off...so just download the script again.
Also, there are now (there wasn't before) Settings ("Debug" & "Debug_OnlyBlocked") for changing the default Debug values.
In the future, Buggy Mouse will save settings to an ini file & remember changes made while running (for example the checkboxes will {eventually} persist).
#12
Posted 01 November 2012 - 06:21 PM
#13
Posted 01 November 2012 - 06:33 PM
Go to tools , folder options, observe the section (Click items as follows)
and then select 'Double click to open an item menu'.
#14
Posted 01 November 2012 - 07:41 PM
This has nothing to do with the way my OS is configured. My mouse just clicks as crazy on its three main buttons. It started few months ago and getting worse.
JS lover's script blocks ~400 clicks per day, which proves that the mouse is really buggy... and needs a fix (hardware fix would be better, but as long as soft works, it's fine by me).
#15
Posted 02 November 2012 - 02:19 AM
however, it seems the script is still the old one on your website (last update: may 2012).
...load the URL, then press Reload -- or Shift+Reload -- to force your browser to get the new version...
Am I looking for the right one? --> http://r.secsrv.net/...pts/Buggy-Mouse
...yes, the newest version will always be there, but you may need to forcefully make the browser get a new version, by clicking Reload or holding Shift & clicking Reload.




