DCCD 1 Report post Posted April 17, 2009 (edited) How to get html color valuesi get this PixelGetColor = "9221074"HTML Format = "DBE7F5" How to get it? http://www.w3schools.com/Html/html_colors.aspHere's my code,$size = WinGetPos("[CLASS:YahooBuddyMain]") $var = PixelGetColor($size[0]+30,$size[1]+30) MsgBox(0,"",$var) Edited April 17, 2009 by DCCD [u][font=Arial Black]M[/font]y Blog, AVSS Parts[/u][font=Arial Black]Else[/font][font=Arial Black]L[/font]ibya Linux Users Group Share this post Link to post Share on other sites
SmOke_N 199 Report post Posted April 17, 2009 Hex(9221074, 6) 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. Share this post Link to post Share on other sites
DCCD 1 Report post Posted April 17, 2009 (edited) Hex(9221074, 6) Thanks a lot $pos = MouseGetPos() $var = PixelGetColor( $pos[0], $pos[1]) $result = Hex($var, 6) ; MsgBox(0,""," "&$result&" "& "Hex "&$var) ; Edited April 17, 2009 by DCCD [u][font=Arial Black]M[/font]y Blog, AVSS Parts[/u][font=Arial Black]Else[/font][font=Arial Black]L[/font]ibya Linux Users Group Share this post Link to post Share on other sites