Skip to content

Instantly share code, notes, and snippets.

@TLMcode
Last active December 21, 2015 10:39
Show Gist options
  • Select an option

  • Save TLMcode/6293144 to your computer and use it in GitHub Desktop.

Select an option

Save TLMcode/6293144 to your computer and use it in GitHub Desktop.
WatchWindow.ahk
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