grindking01 Posted April 5, 2004 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.
scriptkitty Posted April 5, 2004 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.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now