mirror of
https://github.com/reactos/ahk_tests.git
synced 2024-11-23 11:39:42 +00:00
9c2ccbcd13
Include HWND in tooltip. svn path=/trunk/ahk_tests/; revision=2087
29 lines
1.0 KiB
AutoHotkey
29 lines
1.0 KiB
AutoHotkey
DetectHiddenText, Off ; Hidden text is not detected
|
|
Sleep, 3500
|
|
|
|
|
|
WinGetTitle, ActiveWndTitle, A
|
|
WinGetText, ActiveWndText, %ActiveWndTitle%
|
|
ControlGetFocus, FocusedName, %ActiveWndTitle%
|
|
ControlGetText, FocusedText, %FocusedName%, %ActiveWndTitle%
|
|
MsgBox, ActiveWnd: "%ActiveWndTitle%" `nFocused: %FocusedText% `nText: %ActiveWndText%
|
|
|
|
|
|
; This example allows you to move the mouse around to see
|
|
; the title of the window currently under the cursor:
|
|
#Persistent
|
|
SetTimer, WatchCursor, 100
|
|
return
|
|
|
|
WatchCursor:
|
|
MouseGetPos, OutputVarX, OutputVarY, id, control
|
|
WinGetTitle, title, ahk_id %id%
|
|
WinGetClass, class, ahk_id %id%
|
|
ControlGetText, FocusedText, %control%, A
|
|
ControlGet, ControlHwnd, Hwnd,, %control%, A
|
|
PixelGetColor, color, %OutputVarX%, %OutputVarY%
|
|
SetTitleMatchMode, 2
|
|
IfWinNotActive, Notepad
|
|
ToolTip, ahk_id %id%`n ahk_class %class%`n WinTitle: "%title%"`n Control: %control%`n HWND: %ControlHwnd%`n ControlText: %FocusedText%`n MousePos: %OutputVarX%x%OutputVarY%`n Color: %color%
|
|
return
|