블루스택5 postmessage 성공하신분계신가요?
postmessage, controlclick가 안먹혀서 그냥 click으로 하고 있습니다만
성공하신분 계시면 혹 어떤방식으로 하셨는지 여쭙고 싶습니다.
button계:
{
wingetpos, pos_x, pos_y, width, height, blue
x_right := width + pos_x
y_bottom := height+ pos_y
;이미지 찾는 곳
ImageSearch, FoundX, FoundY, %pos_x%, %pos_y%, %x_right%, %y_bottom%, *30 Image\계.bmp
비활성왼클(FoundX, FoundY) ;찾은 좌표를 클릭
}
return
비활성왼클(x좌표,y좌표)
{
Click, %x좌표%,%y좌표%
/*
lparam := x좌표|y좌표<<16
PostMessage, 0x201, 1 ,%lparam%, , blue
PostMessage, 0x202, 0, %lparam%, , blue
*/
Sleep, 1000
}