Jump to content

PixelSearch


Recommended Posts

I got a problem with:

PixelSearch ( left, top, right, bottom, color [, shade-variation [, step [, hwnd]]] )

shade-variation [optional] A number between 0 and 255 to indicate the allowed number of shades of variation of the red, green, and blue components of the colour. Default is 0 (exact match).

I dont understand the explaination :( . If you got a color like: Red: 100 Blue: 20 Green: 250 and you set the Shade variation to 10, and it finds a color like this: R:80 B:15 G:100 will the script take that color as found? or must it be: R:80+-10, B:15 +-10, G:100+-10? Or just only one must be in range of +-10 shades?

Thanks, Jeanpierre

Edited by Jeanpierre92
Link to comment
Share on other sites

  • Moderators

Jeanpierre92,

I have no idea what AutoIt actually does internally, but logically the shade must apply to all 3 colour elements. If it only applied to one, then the colours which would fire a positive response from the function could be completely different:

R:100 B:20 G:250 Shade:10

R:255 B:15 G:0    ; Almost pure red
R:0   B:15 G:235  ; Almost pure blue

which would rather defeat the object of the command. :)

So I would suggest your "R:80+-10, B:15+-10, G:100+-10" suggestion is the correct one. :(

M23

Edit: Typnig!

Edited by Melba23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...