Touchpad control - extraneous clicks, etc?

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
AHKxx
Posts: 75
Joined: 26 Feb 2014, 01:37

Touchpad control - extraneous clicks, etc?

01 May 2015, 03:25

Are there any AHK tricks for dealing with inadvertently touching the touch pad? I've got a Synaptics pad.

I have found one simple little app that does this (touchpad-blocker.com) and it works, but not well enough.

Can AHK do this?
AHKxx
Posts: 75
Joined: 26 Feb 2014, 01:37

Re: Touchpad control - extraneous clicks, etc?

08 May 2015, 22:24

Just giving this a bump, in case anyone has any ideas. Thanks.
username

Re: Touchpad control - extraneous clicks, etc?

09 May 2015, 08:37

This seems to work. But mouse cursor using touchpad can't move while typing, works fine with physical mouse. Sometimes you have to click twice to get mouse working again.

Code: Select all

#InstallKeybdHook
#InstallMouseHook
;SetBatchLines -1
SetTimer, check_typing, 20
return

check_typing:
tmp := A_TimeIdlePhysical
return

#if (tmp < 30 AND A_PriorKey!="LButton")
LButton::return
#if

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: mikeyww and 141 guests