grindking01 0 Posted April 5, 2004 Ok, say i wanted to move a window named "Untitled" from the center of the screen to coordinates (0,0) (top left corner) keeping the same dimensions, how would I do this? I know how to move the window its just keeping the dimension defaults im having trouble with. Share this post Link to post Share on other sites
scriptkitty 1 Posted April 5, 2004 Winmove("Untitled","",0,0) this code will center it: $pos=WinGetPos ( "Untitled") $x=(@DesktopWidth-$pos[2])/2 $y=(@DesktopHeight-$pos[3])/2 WinMove("Untitled","",$x,$y) AutoIt3, the MACGYVER Pocket Knife for computers. Share this post Link to post Share on other sites