Jump to content

ControlClick without controlID?


 Share

Recommended Posts

I'm trying to send a mouseclick on a minimized game, but using AutoIT Window Info tool, I found no controlIDs in the game, the class and instance are allways empy, so I was wondering is it posible to send a click to X,Y coordinates to a (minimized) window which doesn't have controlID?

I tried

ControlClick("GAME", "", "none", "Right", 1, $x, $y)
ControlClick("GAME", "", "", "Right", 1, $x, $y)
ControlClick("GAME", "", "[CLASS:; INSTANCE:]", "Right", 1, $x, $y)

but neither of them is working. The game is protected by GameGuard, so I'm compiling this file as pinnacle.exe, or... the GG is still blocking it? I've tried MouseClickPlus, but I can't get it to work on any window.

Link to comment
Share on other sites

ControlClick("GAME", "", "", "Right", 1, $x, $y)

this should work

But if there is GameGuard I don't think rename AutoIt's EXE will do the trick.

This renamed EXE has still "AutoIt V3 Script" ClassName (or similar one) which can't be changed 

and GG checks for ClassName as far as I know.

Link to comment
Share on other sites

But if there is GameGuard I don't think rename AutoIt's EXE will do the trick.

This renamed EXE has still "AutoIt V3 Script" ClassName (or similar one) which can't be changed

and GG checks for ClassName as far as I know.

but if I make simple MouseClick() or Send() commands in the script compiled as pinnacle.exe it'll work, so this is one way of bypassing GG, but

ControlClick("GAME", "", "", "Right", 1, $x, $y)

is not...

Can any1 show/post a working MouseClickPlus script? Couse I've never seen any1 working (and I found many) T_T

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...