Had a devil of a time persuading AutoHotKey to recognize UEStudio '11 windows after the upgrade.
It's because, rather than a reasonable ahk_class shown in Window Spy, as was the case with previous versions, you get something out of Window Spy like this:
>>>>>>>>>>( Window Title & Class )<<<<<<<<<<<
[Edit1] - UEStudio '11
ahk_class Afx:00400000:8:00010011:00000000:019112D3
And the number changes on a regular basis, so you can't use ahk_class any more to specify the UEStudio '11 window.
So, things like this:
GroupAdd, AutoCorrectGroup, ahk_class UEStudio '11
won't work any more.
What you _can_ do instead is this:
GroupAdd, AutoCorrectGroup, UEStudio '11
(note: no "ahk_class" in there)
BUT, earlier in your .ahk file, you will need to add:
;needed for UEStudio '11, which uses process IDs as the ahk_class
SetTitleMatchMode 2
Hope this helps at least one other person to avoid my frustration in tracking this down.
Take care.
It's because, rather than a reasonable ahk_class shown in Window Spy, as was the case with previous versions, you get something out of Window Spy like this:
>>>>>>>>>>( Window Title & Class )<<<<<<<<<<<
[Edit1] - UEStudio '11
ahk_class Afx:00400000:8:00010011:00000000:019112D3
And the number changes on a regular basis, so you can't use ahk_class any more to specify the UEStudio '11 window.
So, things like this:
GroupAdd, AutoCorrectGroup, ahk_class UEStudio '11
won't work any more.
What you _can_ do instead is this:
GroupAdd, AutoCorrectGroup, UEStudio '11
(note: no "ahk_class" in there)
BUT, earlier in your .ahk file, you will need to add:
;needed for UEStudio '11, which uses process IDs as the ahk_class
SetTitleMatchMode 2
Hope this helps at least one other person to avoid my frustration in tracking this down.
Take care.