ScriptUO

Official ScriptUO EasyUO Scripts => Script Snippets => Topic started by: NObama on October 02, 2011, 08:02:21 AM

Title: NOBama's Pixel Color Scanner
Post by: NObama on October 02, 2011, 08:02:21 AM
Pixel Color Scanner

Usage:  Will work separately or as part of a script

1) Run script, follow prompts

Code: [Select]
SUB PIXEL_COLOR_CHECK
display ok Move your cursor to the pixel you want identified, then hit 'F1'
repeat
  OnHotKey f1
    {
    set %check_pixel_x #cursorx
    set %check_pixel_y #cursory
    savePix %check_pixel_x %check_pixel_y 1
    display ok #pixcol
    }
Until #False
halt; change to return for integration into another script
Title: Re: NOBama's Pixel Color Scanner
Post by: Endless Night on October 02, 2011, 09:35:41 AM
kal ex has some pretty good magnifiers and pixel helpers over on Easyuo.  Might help with your project.
Title: Re: NOBama's Pixel Color Scanner
Post by: Neo on October 02, 2011, 03:19:23 PM
I used to use a modified version of RK's pixel checker found @ EUO for pixel testing stuff... I think it's pretty useful to find pixels to test for, when writing OCR stuff...