Klovis 0 Posted July 1, 2011 I want to be able to click on a certain point on a minimized window, so is it possible? Share this post Link to post Share on other sites
somdcomputerguy 103 Posted July 1, 2011 Probably not. MouseMove, MouseClick, and Send for that matter, will only do their thing on an active, focused, window. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Share this post Link to post Share on other sites
Exit 154 Posted July 1, 2011 Function Reference ControlClick -------------------------------------------------------------------------------- Sends a mouse click command to a given control. ControlClick ( "title", "text", controlID [, button [, clicks [, x [, y ]]]] ) Parameters title The title of the window to access. text The text of the window to access. controlID The control to interact with. See Controls. button [optional] The button to click, "left", "right", "middle", "main", "menu", "primary", "secondary". Default is the left button. clicks [optional] The number of times to click the mouse. Default is 1. x [optional] The x position to click within the control. Default is center. y [optional] The y position to click within the control. Default is center. App: Au3toCmd UDF: _SingleScript() Share this post Link to post Share on other sites