vesper님이 공개하신 매크로로 이것저것 해보고있는데
처음부터 막혀서 이것저것 찾아봐도 이해가 안되서 질문올립니다 ㅠ
Gui, Add, Text , x50 y5 w150 h20, F1 Start
Gui, Add, Text, x50 y20 w150 h20, F2 Fin
IfNotExist, BlueStacks App Player
{
Run, C:\Program Files (x86)\BlueStacks\HD-StartLauncher.exe
}
Gui, Show
start := false
F1::
{
CoordMode, Pixel, Screen
WinGetPos, pos_x,pos_y, width, height, BlueStacks App Player
x_right := width + pos_x
y_bottom := height + pos_y
start := true
Loop
{
While(start=true)
ImageSearch,FoundX,FoundY,%pos_x%,%pos_y%,%x_right%,%y_bottom%, *50 %A_ScriptDir%\image\es.bmp
if(ErrorLevel = 0)
{
hideclick(FoundX,FoundY)
RandSleep(2000,2500)
}
}
}
hideclick 과 RandSleep 변수 선언 까지도 다했구요 실행을 하면 저 이미지서치 부분에서 문제가 있는것같은데 bmp 파일도 24비트로 저장했구요 바로 실행아이콘 터치를 하려고했는데 이미지를 전혀 찾지를 못해서 어느부분이 문제인지를 모르겠네요...
도움좀 부탁드립니다 ㅠ