Well, I was about to slap myself in the face for missing that one.
GadgetGeeks pointer to the AHK script definitely is close, but it's not quite the effect I was looking for.
Ah, finally found an example.
This is from a Camtasia example
http://www.techsmith.com/tutorial-camtasia-sample-project-cursor-effects.htmlYou can see the effect about 3 minutes in (ignore the yellow highlighter effect, just the rings effect.
The Built in windows effect is close, but not quite the same
I did alter the StackOverflow script slightly so that it doesn't do a double pop effect when you click (instead of press hold).
#SingleInstance force
Clicked:=0
~LButton::
Clicked:=1
SetTimer, ClickDelay, -200
return
~LButton UP::
Clicked:=1
SetTimer, ClickDelay, -200
return
ClickDelay:
if Clicked = 1
{
Send {Ctrl}
}
Clicked:=0
return
Still, the effect isn't quite what I was looking for, but very close.
Thanks for the links.
If anyone else knows a way to get closer to the camtasia effect, i'd love to hear about it!