| View previous topic :: View next topic |
| Author |
Message |
teddan
Joined: 27 Oct 2009 Posts: 25
|
Posted: Sat Jan 09, 2010 5:17 pm Post subject: WinGetText doesn’t Retrieve text I want |
|
|
Hello all!
I'm having problem retrieving text from an application called “WC3 Custom Kick”.
When I play Warcraft 3, I want to be able to check the stats of all the players in current match. I can see their nicks in game and manually type command to see their stats. But it would be much easier and faster to retrieve the nicks from an application called “WC3 Custom Kick” (which is able to see the nicks in Warcraft 3).
WinGetText and WindowsSpy doesn’t do it for me. Is there any more features in Autohotkey to retrieve text or can you recommend anything else? I’ve heard of CheatEngine but I think it’s to advanced for me.
| Code: |
WinGetText, test, ahk_class ThunderRT6FormDC
msgbox %test%
return |
I would be truly grateful if you can help me with this issue!
You can find “WC3 Custom Kick” here:
http://www.securegamers.com/shadowfrench/W3XCustomKick12201.exe _________________ Teddan |
|
| Back to top |
|
 |
Fry
Joined: 01 Nov 2007 Posts: 885
|
Posted: Sat Jan 09, 2010 6:09 pm Post subject: |
|
|
| ControlGet? |
|
| Back to top |
|
 |
teddan
Joined: 27 Oct 2009 Posts: 25
|
Posted: Sat Jan 09, 2010 6:41 pm Post subject: |
|
|
ControlGet doesn't do it either unfortunately. The field acctually has a control name though.
| Code: |
ControlGetText, test, ThunderRT6Frame10, ahk_class ThunderRT6FormDC
msgbox %test%
|
Thanks your for response though! _________________ Teddan |
|
| Back to top |
|
 |
|