Last active
December 21, 2015 10:39
-
-
Save TLMcode/6293144 to your computer and use it in GitHub Desktop.
WatchWindow.ahk
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, WatchWindow, 100 | |
| return | |
| WatchWindow: | |
| if WinExist("Untitled - Notepad") && (Clipboard~="CIS\w{4}\b") | |
| { | |
| ControlSetText, Edit1, % Clipboard, Untitled - Notepad | |
| SetTimer, WatchWindow, Off | |
| ToolTip | |
| } | |
| else | |
| { | |
| CoordMode, Tooltip, Screen | |
| Tooltip Waiting for new Untitled - Notpad to exist, 10, 10 | |
| } | |
| return | |
| ESC::ExitApp ; <-- Press escape to exit. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment