masterprof Posted September 6, 2009 Posted September 6, 2009 Quote 3.3.1.0 (20th May, 2009) (Beta)...- Added #351: Reverse PixelSearch()....How can I use Reverse PixelSearch ?I couldn't found any example how to change pixel search direction.
Moderators SmOke_N Posted September 6, 2009 Moderators Posted September 6, 2009 http://www.autoitscript.com/forum/index.php?showtopic=95367 Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
masterprof Posted September 7, 2009 Author Posted September 7, 2009 (edited) On 9/6/2009 at 11:42 PM, 'SmOke_N said: http://www.autoitscript.com/forum/index.php?showtopic=95367I'm using v.3.3.1.1But I couldn't found any help or example how to change pixel search direction in new PixelSearch() Edited September 7, 2009 by masterprof
masterprof Posted September 7, 2009 Author Posted September 7, 2009 On 9/7/2009 at 2:59 PM, 'MvGulik said: Switch top and bottom to reverse the search direction.It gives error in such case
Moderators SmOke_N Posted September 7, 2009 Moderators Posted September 7, 2009 On 9/7/2009 at 3:16 PM, 'masterprof said: It gives error in such case The search is still right to left, however, you can (as stated in the post before yours) work it bottom to top or top to bottom. ( You have to make sure you are using Beta however ( if in SciTe use Alt+F5 to Run ( or Alt+F7 to compile ) beta ). Having said that, and confirming with a Dev, this does in fact work both ways for me: #include <Misc.au3> If _VersionCompare(@AutoItVersion, "3.3.1.0") < 0 Then MsgBox(16, "Error", "You are running " & @AutoItVersion & ", not 3.3.1.0") Exit EndIf Global $a_search = PixelSearch(2, 400, 400, 700, 0xFFFFFF) If @error Then MsgBox(16, "Error", "No Match", 2) Else MsgBox(64, "Match", "Top to Bottom Search" & @CRLF & "x: " & $a_search[0] & @CRLF & "y: " & $a_search[1]) EndIf $a_search = PixelSearch(2, 700, 400, 400, 0xFFFFFF) If @error Then MsgBox(16, "Error", "No Match", 2) Else MsgBox(64, "Match", "Bottom to Top Search" & @CRLF & "x: " & $a_search[0] & @CRLF & "y: " & $a_search[1]) EndIf Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
masterprof Posted September 7, 2009 Author Posted September 7, 2009 On 9/7/2009 at 4:21 PM, 'SmOke_N said: The search is still right to left, however, you can (as stated in the post before yours) work it bottom to top or top to bottom. ( You have to make sure you are using Beta however ( if in SciTe use Alt+F5 to Run ( or Alt+F7 to compile ) beta ). Having said that, and confirming with a Dev, this does in fact work both ways for me: #include <Misc.au3> If _VersionCompare(@AutoItVersion, "3.3.1.0") < 0 Then MsgBox(16, "Error", "You are running " & @AutoItVersion & ", not 3.3.1.0") Exit EndIf Global $a_search = PixelSearch(2, 400, 400, 700, 0xFFFFFF) If @error Then MsgBox(16, "Error", "No Match", 2) Else MsgBox(64, "Match", "Top to Bottom Search" & @CRLF & "x: " & $a_search[0] & @CRLF & "y: " & $a_search[1]) EndIf $a_search = PixelSearch(2, 700, 400, 400, 0xFFFFFF) If @error Then MsgBox(16, "Error", "No Match", 2) Else MsgBox(64, "Match", "Bottom to Top Search" & @CRLF & "x: " & $a_search[0] & @CRLF & "y: " & $a_search[1]) EndIf Thanks SmOke_N, MvGulik. It's my mistake. I changed top, bottom and left, right in one time. SmOke_N's example is working. Only "left-to-right" and can switch betwen "top-to-bottom" and "bottom-to-top".
ynbIpb Posted September 14, 2009 Posted September 14, 2009 This works only vertically? I need to reverse the horizontal: right to left. I changed the coordinates of the left & right places:PixelSearch ( 353, 6, 0, 6, $color , 10 , 1 , $winL2)But not working
Moderators SmOke_N Posted September 14, 2009 Moderators Posted September 14, 2009 On 9/14/2009 at 4:24 PM, 'ynbIpb said: This works only vertically? I need to reverse the horizontal: right to left. I changed the coordinates of the left & right places:PixelSearch ( 353, 6, 0, 6, $color , 10 , 1 , $winL2)But not workinghttp://www.autoitscript.com/trac/autoit/ticket/351 Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Krush Posted August 28, 2010 Posted August 28, 2010 On 9/14/2009 at 5:23 PM, 'SmOke_N said: http://www.autoitscript.com/trac/autoit/ticket/351It's still broken.
seandisanti Posted August 28, 2010 Posted August 28, 2010 On 8/28/2010 at 12:28 AM, 'Krush said: It's still broken.provide a sample case man, no one wants to write up a test case to prove that it's working as intended
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