Guest User

Untitled

a guest
Jan 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #SingleInstance FORCE
  2. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  3. ; #Warn ; Enable warnings to assist with detecting common errors.
  4. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  5. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  6.  
  7. +^n:: ; Ctrl (the '^' character) - Shift (the '+' character) - N ('n')
  8. WinGetTitle, ActiveWin, A ; 'A' argument means active window
  9. WinMove, %ActiveWin%,, 0,1,
  10. return
Add Comment
Please, Sign In to add comment