오토핫키 공개된 소스로 배우는중인데요.
간단한 구이인데 이미지서치가 안되네요.
이미지서치 부분만 떼어내서 핫키로 실행하면 되는데
구이에서 하면 fail 메세지박스만 뜹니다
어떤부분이 잘못된건지 고수님들의 지적 바랍니다^^
---------------------------------------------------
Gui, Add, Button, x12 y100 w60 h30 , 시작
Gui, Add, Button, x12 y100 w60 h30 Hidden, 정지
Gui, Add, Button, x82 y100 w60 h30 , 일시정지
Gui, Add, Button, x82 y100 w60 h30 Hidden, 다시시작
Gui, Add, Text, x12 y220 w130 h20 +Center cblue vA, ctrl+3
; Generated using SmartGUI Creator 4.0
Gui, Show, x128 y104 h258 w158, New GUI Window
Return
GuiClose:
ExitApp
^3::
WinGetActiveTitle, 창이름
GuiControl,, A, %창이름%
return
Button시작:
Gui, Submit, NoHide
SetWorkingDir %A_ScriptDir%
Imagesearch, vx, vy,1,1,800,800, *150 %A_ScriptDir%\data\go.bmp
If errorlevel = 0
{
g1:=vx|vy<<16
PostMessage, 0x201,, %g1%,, Windroye(2)
PostMessage, 0x202,, %g1%,, Windroye(2)
}
else
{
MsgBox, fail
}
return