Window Title / PID Helper - On Mouse Click - Tooltip display style
I'm not sure where to post this but this was really irritating me so untill Demonbuddy team tells you window titles this is to help isboxer users.
Or anyone else that wants to get the PID for a particular window very fast by simply clicking the window to make it active.
I will not compile this into an .exe file. EVER you can do that yourself.
This is an autohotkey script.
Autohotkey is free it is basically the same thing as autoit.
NOTE **** People who play other games with punkbuster make sure you download 64 bit autohotkey. ****
Hope this helps you
I'm not sure where to post this but this was really irritating me so untill Demonbuddy team tells you window titles this is to help isboxer users.
Or anyone else that wants to get the PID for a particular window very fast by simply clicking the window to make it active.
I will not compile this into an .exe file. EVER you can do that yourself.
This is an autohotkey script.
Code:
#Persistent
SetTimer, WatchActiveWindow, 200
return
WatchActiveWindow:
WinGet, PID, PID, A
ToolTip, %PID%
return
Esc:: ExitApp
;^h::ExitApp
;Uncomment the above line ; ^h = Ctrl+h change to what ever letter you wish. If you do not like Esc. :)
Autohotkey is free it is basically the same thing as autoit.
NOTE **** People who play other games with punkbuster make sure you download 64 bit autohotkey. ****
Hope this helps you

Last edited: