Skip to content

Instantly share code, notes, and snippets.

@atwright147
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atwright147/9875559 to your computer and use it in GitHub Desktop.
Save atwright147/9875559 to your computer and use it in GitHub Desktop.
#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
@atwright147
Copy link
Author

This code is based on the work of Chad Essley (http://www.cartoonmonkey.com/enter-the-tabtip-tamer/)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment