Jump to content

Recommended Posts

Posted

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.

Posted

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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...