answersLogoWhite

0

Try this...

1) In System Preferences > Universal Access > Mouse & Trackpad, turn on Mouse Keys and check "Enable access for assistive devices."

2) Copy the code below and paste it into your AppleScript Editor, located in the Utilities folder. From the Editor's File menu select Save As > File Format: Application, and make sure to check "Stay Open" under Options.

on idle

tell application "System Events"

key code 87 -- no. 5 on numeric keypad

end tell

return 5 -- clicks every 5 seconds; adjust to suit

end idle

When launched, the script will effect a mouse click every 5 seconds upon whatever button or ui element the mouse pointer happens to be hovering over. To adjust the interval, edit the return 5 command accordingly. To quit the script at any time, click on its docked icon and select Quit from the menu. Good luck. It really does work I use it all of the time.

User Avatar

Wiki User

14y ago

What else can I help you with?