Link to home
Start Free TrialLog in
Avatar of Pumpernickel
PumpernickelFlag for United States of America

asked on

Mouse Click After Inactivity

Does anyone know of a program that I can use to execute a mouse  click in a certain spot of after 3 minutes of inactivity?
Avatar of Joe Winograd
Joe Winograd
Flag of United States of America image

A simple script in AutoHotkey can do it. You can get started learning about AutoHotkey with this EE article:
AutoHotkey - Getting Started

After learning the basics, you'll want to study these built-in variables:
A_TimeIdle
A_TimeIdlePhysical

And this command:
MouseClick

Regards, Joe
Avatar of Pumpernickel

ASKER

Like this?

IfGreater, A_TimeIdle, 180
	MouseClick, left, 60, 45

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Joe Winograd
Joe Winograd
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial