Getting access to controls info in Unity game Topic is solved

Ask gaming related questions
sunken
Posts: 1
Joined: 03 Jun 2023, 03:25

Getting access to controls info in Unity game

Post by sunken » 03 Jun 2023, 03:35

I've tried using Analytics Insights and the built in WindowSpy tool from AHK, unfortunately I get no info about controls in either of them.
test.PNG
test.PNG (7.97 KiB) Viewed 692 times
I do however have acccess to Window Title, Class and Process and I can send text and clicks without any issue, but I was wondering if there is something else I could try to get access to the controls info.

I've also tried the following script without any luck (meaning, it did not return any controls for the game client window, other apps displayed correctly the controls).

Code: Select all

^j::
{
	MsgBox "Looping through all controls on the active window."
	for n, ctrl in WinGetControls("A")
  {
    Result := MsgBox("Control #" n " is '" ctrl "'. Continue?",, 4)
    if (Result = "No")
        break
  }

User avatar
boiler
Posts: 16771
Joined: 21 Dec 2014, 02:44

Re: Getting access to controls info in Unity game  Topic is solved

Post by boiler » 03 Jun 2023, 06:47

That means there are no standard Windows controls in that game's window.

Post Reply

Return to “Gaming”