>>2003781sure, first of all I suggest you to read this if you don't know a shit about AHK (it's pretty simple to be honest) :
http://nanami-tan.info/#AHKAnd here the script I use, just write a .ahk file and copy/paste the following code :
F8::ResizeWin(1780,950)
ResizeWin(Width = 0,Height = 0)
{
WinGetPos,X,Y,W,H,A
If %Width% = 0
Width := W
If %Height% = 0
Height := H
WinMove,A,,%X%,%Y%,%Width%,%Height%
}
To tile the window, I use the key F8