hmm this should have done it ; Move Mouse to Lower Right Corner MouseMove ( @DesktopWidth , @DesktopHeight , 1 ) Keep in mind "@DesktopWidth" wasn't some thing you where to change...that actually a AutoIt macro that grabs the width of the desktop...same for the height one...since the mousemove command works from the upper left corner which equals 0,0 so putting: MouseMove ( 0 , 0 , 1 ) Would move the mouse to the upper left corner of any desktop and: MouseMove ( @DesktopWidth , @DesktopHeight , 1 ) should put it in the lower right corner and: MouseMove ( @DesktopWidth / 2 , @DesktopHeight / 2 , 1 ) should put it in the middle of any screen as we are dividing the height and width of the desktop...no matter what it is. MouseMove ( 10 , 20 , 1 ) Would move the mouse cursor 10 pixels to the right of upper left and 20 pixels down from upper left MouseMove ( @DesktopWidth - 10 , @DesktopHeight - 20 , 1 ) Would place the cursor 10 pixels to the left of lower right and 20 pixels above lower right. Heh well its good your starting to gain a grasp of it.