Closed CJFreePy closed 6 years ago
Does any message show up the the remote instance window?
for Socket method: none logs
for cmd method:
Try using wireshark to compare the data sent by your code with the data sent by GIMX.
Closed due to inactivity.
It works via cmd command on win7 X64, but no response from socket API. CMD works find:
subprocess.Popen('c:/program files/gimx/gimx.exe --event "PS(255)" -d 192.168.2.19:51914')
Socket API, no response: `addr = ('192.168.2.19',51914) baseReq = b'0x00,0x00'
with socket.socket(socket.AF_INET,socket.SOCK_DGRAM) as s: print('go.') s.sendto(baseReq,addr) print(s.recv(1024)) print("end.") s.close() `
also no action/response for click (is this right format?):
clickRIGHT = b'0x01,0x01,0x84,0xff,0x00,0x00,0x00'
screen print (always in waiting end) :
go.
Thanks!