Quote Originally Posted by 'MrHepp',index.php?page=Thread&postID=76170#post76 170
I think it's impossible to send mouse clicks to minimized windows, at least in Windows (I don't know anything about the OS X APIs)..
If you wanted to do this, it's certainly possible:

Code:
PostMessage ( hwnd, WM_LBUTTONDOWN, 0, 0 );
It would be trivial for the receiving program to decide not to react to the message, since it can find out with a single line of code that it's minimized.