Skip to content

Instantly share code, notes, and snippets.

@dacap
Created December 13, 2011 02:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dacap/1470122 to your computer and use it in GitHub Desktop.
Save dacap/1470122 to your computer and use it in GitHub Desktop.
AutoHotKey script for "Google Chrome - Always on top"
#o::
WinSet, Alwaysontop, , A
WinGet, ExStyle, ExStyle, A
if (ExStyle & 0x8) ; 0x8 is WS_EX_TOPMOST
{
WinSet, Transparent, 204, A
}
else
{
WinSet, Transparent, 255, A
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment