Last active
August 29, 2015 13:57
-
-
Save atwright147/9875559 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
#Persistent | |
FlashWinTitle = Flash, Alias, Mirage, Painter, Photoshop, Illustrator, Expression, ArtRage | |
SetTimer, WatchFlash, 2000 ;Checks the window every 2 seconds | |
WatchFlash: | |
WinGetActiveTitle, ActiveTitle | |
If ActiveTitle Not Contains %FlashWinTitle% | |
{ | |
Process, Priority, tabtip.exe, normal | |
} | |
Else ;it is the active window so make it high priority | |
{ | |
Process, Priority, tabtip.exe, high | |
} | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This code is based on the work of Chad Essley (http://www.cartoonmonkey.com/enter-the-tabtip-tamer/)