<winmove> Moves specific window to defined position.


Command Tree:   Window  \  Move
.
Syntax:   <winmove>("WinTitle", Match, Xpos, Ypos)
WinTitle
Title of the window to move.
Match
Can be one of these values:
0 - WinTitle can be substring of a window title
1 - WinTitle must exactly match a window title 
Xpos
X-coordinate of desired window position
Ypos
Y-coordinate of desired window position
.
.
Example:   <#> This macro moves "Notepad" window to position (32,32)
<#>
<commands_only_on>

<if_win>("Notepad","OPEN",0)
  
<winmove>("Notepad",0,32,32)
<else>
   <msg>(100,100,"'Notepad' is not opened!","Message",1)
<endif>