Autohotkey, 지정한 위치의 칼라코드값 얻기

 

PixelGetColor, OutputVar, X, Y

 

간단설명)

 

PixelGetColor, 칼라값을얻을변수, 색상을얻어올X좌표, 색상을얻어올Y좌표

 

여기의 X, Y좌표는 활성화된 창의 좌표

 

레퍼런스

 

PixelGetColor - Syntax & Usage | AutoHotkey

The name of the variable in which to store the color ID in hexadecimal blue-green-red (BGR) format. For example, the color purple is defined 0x800080 because it has an intensity of 80 for its blue and red components but an intensity of 00 for its green com

autohotkey.com

예)

 

PixelGetColor, vColor, 100, 100
If (vColor = "0xE5E5E5")
{
    색상이 바뀐것에 관련된 처리
}

루프안에 위 코드를 넣어 일정시간 딜레이를 줘가며 화면의 변화를 체크할때 좋습니다.

+ Recent posts