Created
February 17, 2023 15:26
-
-
Save RaptorX/3792effdbe8b0a3f9ff7465af81010f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
settimer displayCursor, 10 | |
return | |
displayCursor() | |
{ | |
if a_cursor = 'IBeam' | |
{ | |
MouseGetPos ,,, &OutputVarControl, 2 | |
hwnd := ControlGetFocus('A') | |
if (OutputVarControl = hwnd) | |
tooltip a_cursor ' is in edit mode' | |
else | |
tooltip a_cursor ' is NOT in edit mode' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I really appreciate it