Nevalopo 0 Posted August 10, 2010 Kinda like title says.. Is it possible to use MouseMove like ControlSend? Right now im using MouseClick("left", 651, 76) Is it possible to do this without having the Application open? Thanks in advance Share this post Link to post Share on other sites
somdcomputerguy 103 Posted August 10, 2010 ControlClick - 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
Nevalopo 0 Posted August 10, 2010 ControlClickHow do i find out the control id? Is it like.. The id for mouse or something? :/ Share this post Link to post Share on other sites
somdcomputerguy 103 Posted August 10, 2010 AutoIt Window Info Tool (AU3Info) - 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
Nevalopo 0 Posted August 10, 2010 (edited) AutoIt Window Info Tool (AU3Info) Ok thanks.. So it should look something like this? ControlClick ( "SSSS", "SSSS", [iD:15] [, left [, 1 [, 651 [, 76 ]]]] ) Edit: I get this error when i start it ControlClick ( "SSSS", "SSSS", [iD:15] [, left [, 1 [, 651 [, 76 ]]]] ) ControlClick ( "SSSS", "SSSS", [iD^ ERROR Edit2: I don't understand.. I can't seem to get the Control Id correct.. What if i want to click in the center of Notepad while having it minimized? Edited August 10, 2010 by Nevalopo Share this post Link to post Share on other sites
somdcomputerguy 103 Posted August 10, 2010 Take out the square brackets. - 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
Nevalopo 0 Posted August 10, 2010 Take out the square brackets. all of them or just some? Mind giving me an example? Should it be like this? ControlClick ( "SSSS", "SSSS", ID:15 , left , 1 , 651 , 76 ) Or this? ControlClick ( "SSSS", "SSSS", ID:15 [, left [, 1 [, 651 [, 76 ]]]] ) Or maybe this? ControlClick ( "SSSS", "SSSS", "ID:15" [, "left" [, 1 [, 651 [, 76 ]]]] ) Share this post Link to post Share on other sites
somdcomputerguy 103 Posted August 10, 2010 Ok thanks.. So it should look something like this? ControlClick ( "SSSS", "SSSS", [iD:15] [, left [, 1 [, 651 [, 76 ]]]] ) No, probably like this: ControlClick("SSSS", "SSSS", "15", "left", 1, 651, 76) - 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
Nevalopo 0 Posted August 10, 2010 No, probably like this: ControlClick("SSSS", "SSSS", "15", "left", 1, 651, 76)Hmm.. never left clicks on 651 76 :/ Share this post Link to post Share on other sites
somdcomputerguy 103 Posted August 10, 2010 Sorry, I might have gotten the syntax wrong this time, try this, ControlClick("SSSS", "SSSS", 15, "left", 1, 651, 76) - 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
Nevalopo 0 Posted August 10, 2010 Sorry, I might have gotten the syntax wrong this time, try this, ControlClick("SSSS", "SSSS", 15, "left", 1, 651, 76)Hmm.. Still doesnt seem to click ControlSend("SSSS", "", "", "{F4}") Sleep(200) ControlClick("SSSS", "SSSS", 15, "left", 1, 651, 76) Sleep(200)I am using this.. It clicks F4 but doesnt click in the middle of notepad~~ Share this post Link to post Share on other sites
Nevalopo 0 Posted August 10, 2010 Bump. Still could use some help here Share this post Link to post Share on other sites
Nevalopo 0 Posted August 12, 2010 Bump agian! need help to click f4 and click inside notepad in the middle basically.. without having the window open Share this post Link to post Share on other sites