up vote 0 down vote favorite
share [g+] share [fb]

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;

#SingleInstance Force
LButton UP::
Send {Ctrl}
return

(Every mouse click fires a Ctrl briefly. Unfortunately this seems to break click-drag though)

link|improve this answer
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.