Title: [Autohotkey] Basic Window Tiler (Single Screen 1440x900) Author: xdemonessx Pastebin link: http://pastebin.com/aKfzwLC8 First Edit: Thursday 29th of November 2012 08:25:28 PM CDT Last Edit: Thursday 29th of November 2012 08:25:28 PM CDT     ;SAVE THIS FILE AS .AHK;     ;///Modifiers\\\;     ;# = Windows Key;     ;! = Alt;             ;^ = Control;     ;+ = Shift;     ;& = Used to combine keys (ctrl+alt = ^&!);       ;"WinMove,A,, W,X,Y,Z"     ;Where     ;W= Distance of the window from the left side of the screen     ;X= Distance of the window from the top of the screen     ;Y= Total width of the window     ;Z= Total height of the window         #space::Run firefox.exe     #c::Run calc.exe     #n::Run notepad.exe       return     NumpadIns::WinMaximize, A         return     NumpadPgUp::             WinMove,A,,    910, 8, 520, 297       return     NumpadRight::             WinMove,A,,   910, 304, 520, 297       return     NumpadPgDn::             WinMove,A,,    910, 597, 520, 297       return     NumpadLeft::             WinMove,A,,   14, 30, 874, 861             return     NumpadDel::             WinGetPos,X,Y,W,H,A             WinMove,A,,1440/2-W/2,900/2-H/2       return