Yirrlaar Posted February 27, 2018 Posted February 27, 2018 Does anyone know why ControlClick($WinName, "", "", "primary", "1", $x1, $y1) works, I'd say 60% of the time but MouseClick($MOUSE_CLICK_PRIMARY, $x1, $y1, 1) works 100% of the time. $x1 & $y1 have the same coordinates as I call the same function. When I comment out "ControlClick" and activate "MouseClick" it always works, just trying to see if there is something I am missing or some over path I can take. Func iSearch_Click($FileName, $T_X, $T_Y, $B_X, $B_Y) Do $result = _ImageSearchArea($FileName, 1, $T_X, $T_Y, $B_X, $B_Y, $x1, $y1, 10, 0) If $result = 1 Then ControlClick($WinName, "", "", "primary", "1", $x1, $y1) ;MouseClick($MOUSE_CLICK_PRIMARY, $x1, $y1, 1) Sleep(100) EndIf Until $result = 1 EndFunc I am just trying to not have the mouse move to the spot and then click, I'd rather it be 100% independent of the mouse.
Moderators JLogan3o13 Posted February 27, 2018 Moderators Posted February 27, 2018 What happens with ControlClick if you remove the $x and $y vars? If you're just using a ControlClick on a control you don't need the coordinates. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Yirrlaar Posted February 27, 2018 Author Posted February 27, 2018 (edited) There are several different options to "click" on which is why I am doing an ImageSearch to get the $x & $y vars to state which "box" to click I call this function a total of 5 times and the 1st & 2nd attempt, it clicks the correct box, 3rd time it doesn't, 4th yes and 5th no. I just added "MouseMove($x1, $y1, 1)" into the if statement and the mouse moves to the correct spot 100% of the time, so I do not know what else to do Edited February 27, 2018 by Yirrlaar
BrewManNH Posted February 27, 2018 Posted February 27, 2018 Is this a program you're interacting with, a web page, etc.? If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
BigDaddyO Posted February 27, 2018 Posted February 27, 2018 If you are using an Emulator similar to the thread from jplumb or if you are also jplumb then you need to remember that the emulator has to interpret each click then pass it on to the actual app.
Moderators JLogan3o13 Posted February 27, 2018 Moderators Posted February 27, 2018 @BigDaddyO rather than throwing out a dozen possibilities based on a guess of what the OP is trying to do, it is usually better to let them explain it to us so we can help. @Yirrlaar as BrewManNH has asked, we can only help with a detailed description of what you are trying to do. What app/webpage/etc are you trying to automate? What does the image look like that you are trying to do the search on? Why do you need to do it 5 times? Help us help you. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Yirrlaar Posted February 28, 2018 Author Posted February 28, 2018 Sorry for the confusion but I figured it out, there was a window offset I was not including in the ControlClick fucntion. MouseClick($MOUSE_CLICK_PRIMARY, $x1, $y1, 1) ControlClick($WinName, "", "", "primary", "1", $x1-$xoffset, $y1-$yoffset) I was looking into the dimensions of specific box vs the actual window background, once I had figured that out, things went swimmingly.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now