스크립트설명:
좌표랑 픽셀값을 실시간으로 찾아주고 키 하나로 on/off 시키는 스크립트입니다.
간단하게 보시고 보완,보강했으면 좋은부분 댓글로 달아주세요!
꺼졌을 때,
켜졌을 때,
스크립트-------------------------------------------
timercheck:=0
Gui, Add, Text, x22 y20 , 좌표
Gui, Add, Text, x22 y50 , 픽셀
Gui, Add, Text, x22 y80 , On/Off
Gui, Add, Edit, x70 y15 w100 Disabled vEdit1, off
Gui, Add, Edit, x70 y45 w100 Disabled vEdit2, off
Gui, Add, Edit, x70 y75 w100 Disabled vEdit3, off
; Generated using SmartGUI Creator 4.0
Gui, Show, x165 y593,?
return
F1::
if timercheck=0
{
gosub, timeron
}
else if timercheck=1
{
gosub, timeroff
}
return
timeron:
timercheck:=1
GuiControl,, Edit3, on
settimer, timer, 200
return
timeroff:
timercheck:=0
GuiControl,, Edit3, off
GuiControl,, Edit1, off
GuiControl,, Edit2, off
settimer, timer, off
return
Timer:
CoordMode, mouse,Screen
CoordMode, pixel,Screen
MouseGetPos, xx,yy
PixelGetColor, a,xx,yy
GuiControl,,Edit1,%xx%,%yy%
Guicontrol,,Edit2,%a%
return
F3::
ExitApp
return
F2::
Reload
return
우와 능력자시네요!! ㅋㅋㅋㅋ
보강했으면 좋을것같은 기능은... 보강이 아니라 추가지만..
마우스커서 부분과 주변을 확대해서, 커서로 픽셀을 정확하게 가리키는 기능이 있었으면........가능하면 좋겠습니다 ㅎㅎㅎ..