here is a list of possible screen positions to open the window to
uncomment 1 x= and 1 y= to move to a specific location
Function move window example
uncomment 1 x= and 1 y= to move to a specific location
Function move window example
int hwnd
run "$system$\notepad.exe" "" "" "" 0x800 win("" "Notepad") hwnd
int x y
RECT r
;top left
;------------
;x=+1
;y=+1
;Bottom left
;------------
;x=+1
;y=-1
;top right
;------------
;x=-1
;y=+1
;Bottom Right
;------------
;x=-1
;y=-1
;center
;------------
;x=0
;y=0
;top center
;x=0
;y=1
;bottom center
;------------
;x=0
;y=-1
;right center
;------------
;x=-1
;y=0
;left center
;------------
;x=1
;y=0
r.left=x; r.top=y
AdjustWindowPos hwnd &r 3