I just want a little utility that monitors mouse clicks so that when one occurs a visual bubble effect (or something similar) occurs, similar to something you might see in a screencast.

link|improve this question

64% accept rate
feedback

2 Answers

This Windows option;

mouse circle image

Together with an AutoHotkey script similar to;

~LButton::
Send {Ctrl}
return

~LButton UP::
Send {Ctrl}
return

(Every mouse click (down & up) fires a Ctrl briefly)

link|improve this answer
1  
I have fixed the suggestion here (and thanks for putting me onto AutoHotKey). It took me hours to figure out the fix. I added a single character (the tilde ~) that enabled the normal operation of the mouse to pass through. I have also modified the example so that not only a mouse-click release, but also the intial mouse-click generates the effect. – sqgl Feb 21 at 13:46
Nice find! Thanks for the edit. – RJFalconer Mar 3 at 11:30
feedback

I don't know if this is what you are looking for but I take a guess:

http://www.sevenforums.com/tutorials/1908-visual-effects-settings-change.html

Hope this will help!

David.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.