I want to set up a macro where I press a button on the keyboard and it constantly left clicks the trackpad until I let go out that button. However, I can only set the maximum to “triple click” within the software. I’m not a techie as you can see so any guidance on how to set that up would be helpful.
I hope there is a solution to this as it would save a ton of clicking saving me time and a possibly ruined trackpad. Please let me know.
It triggers fine, but if I hold down ⌘-2, the clicking will only repeat for 10 seconds. I have to release and re-press ⌘-2 to start the repeating clicks.
Any idea what's causing that timeout? If I hold down a key in Terminal, it'll repeat forever.
I'm guessing it's timing out because you're spawning hundreds of instances of that macro, which is not the most efficient way to go about it. Try placing those actions inside a While loop:
Ahh, I thought I'd checked that holding down a key in terminal, but it was only a normal key. Good to know about hotkeys though (and the plist setting), I'd not known that about OS-X. Thanks!