gui,show,w200 h100 center,2번
gui,Add,Text,x30 y10 w60 h50, 실행횟수:
gui,Add,Edit,x80 y5 w20 h20 v실행횟수, 0
gui,Add,Button,x50 y30 w100 h20 gStart,Start
Gui,Add,Button,x50 y50 w100 h20 g중지,중지
Gui,Add,Button,x50 y70 w100 h20 g재시작,재시작
Gui, Add, Text, x150 y20 w80 h20 v시간, 12000초
return
#singleinstance off
#Include Gdip.ahk
#Include Gdip_ImageSearch.ahk
#Include Search_img.ahk
Start:
loop
{
sec:=12000
Settimer, a, 1000
return
WinGet,Nox,ID,aaaa
1:=true
2:=false
if(1)
{
Search_img("icon.bmp",Nox,x,y)
if(ErrorLevel = 0)
{
ControlClick, x%x% y%y%, aaaa,,left,1,NA
1:=false
2:=true
}
}
GuiControl, , 실행횟수, %A_Index%
Sleep, 12000000
}
return
Stop:
ExitApp
return
GuiClose:
ExitApp
return
중지:
Pause on
return
재시작:
Pause off
return
a::
sec--
GuiControl,,시간,%sec%초
return
정말 간단한듯한데 해결을 못하고있습니다ㅜㅜ.
icon 이미지 서치후에 클릭하고 12000초의 대기시간을 넣어놨는데
이걸 gui text로 경과시간을 12000초부터 1초씩 역카운트를 하고싶습니다.
문제는 실행을 하면 12000초에서 -1초씩 카운트가 되긴한데 0초에서 초기화가 안되고 -1 -2 -3 -4 -5 이렇게 계속 내려가는데
0초에서 초기화하고 다음 루프문 끝날때부터 다시 12000초에서 카운트다운을 하고싶은데 방법이있을까요
루프문이 끝나는 Sleep, 12000000 이 실행될때부터 gui창에 12000초 부터 역카운트를 시작해서 다음 실행시간을 알고싶어서그렇습니다. 도와주세요 행님덜ㅠㅠㅠ