Moves or resizes a control.
ControlMove X, Y, Width, Height, Control, WinTitle, WinText, ExcludeTitle, ExcludeText
The X and Y coordinates (in pixels) of the upper left corner of Control's new location. If either coordinate is blank, Control's position in that dimension will not be changed. The coordinates are relative to the upper-left corner of the target window's client area; ControlGetPos can be used to determine them.
The new width and height of Control (in pixels). If either parameter is blank or omitted, Control's size in that dimension will not be changed.
Can be either ClassNN (the classname and instance number of the control) or the control's text, both of which can be determined via Window Spy. When using text, the matching behavior is determined by SetTitleMatchMode. If this parameter is blank, the target window's topmost control will be used.
To operate upon a control's HWND (window handle), leave the Control parameter blank and specify "ahk_id " ControlHwnd
for the WinTitle parameter (this also works on hidden controls even when DetectHiddenWindows is Off). The HWND of a control is typically retrieved via ControlGetHwnd, MouseGetPos, or DllCall.
A window title or other criteria identifying the target window. See WinTitle.
If present, this parameter must be a substring from a single text element of the target window (as revealed by the included Window Spy utility). Hidden text elements are detected if DetectHiddenText is ON.
Windows whose titles include this value will not be considered.
Windows whose text include this value will not be considered.
ErrorLevel is set to 1 if there was a problem or 0 otherwise.
To improve reliability, a delay is done automatically after every use of this function. That delay can be changed via SetControlDelay.
Window titles and text are case sensitive. Hidden windows are not detected unless DetectHiddenWindows has been turned on.
ControlGetPos, WinMove, SetControlDelay, Control functions, ControlGetText, ControlSetText, ControlClick, ControlFocus, ControlSend
SetTimer "ControlMoveTimer" OutputVar := InputBox(, "My Input Box") ControlMoveTimer() { if !WinExist("My Input Box") return ; Otherwise the above set the "last found" window for us: SetTimer , "Off" WinActivate ControlMove 10,, 200,, "OK" ; Move the OK button to the left and increase its width. }