Вот некоторый код, который я использовал для первой записи положения мыши (относительное положение мыши не работало, так как окно было мозаичным, и положение щелчка можно было изменить, перемещая плитки).Сразу после этого я щелкаю мышью в записанной позиции (и повторяю это позже в коде).
SplashTextOn, 200, 100, Script Preparations, Please Click on the Person `"Search Term`" link (1) in SAP. ; Show new instructions to the user
WinMove, Script Preparations,, (A_ScreenWidth/2)-150, (A_ScreenHeight/2)-200 ; Move the text instructions window with the name "Script Preparations" 150 pixels right of the center of the screen and 200 pixels up SoundBeep 600, 300 ; Wake up user
; From here on the left mouse button will temporarily be disabled
Hotkey, LButton, on ; Turn Left Mouse Button OFF, to capture the Mouse click
KeyWait, LButton, D ; Wait for LeftMouseButton click Down
MouseGetPos, xposS ,yposS ; Store the position where the mouse was clicked (Search Box)
MouseClick, left, %xposS% ,%yposS% ; Perform the mouse click on the captured mouse location
Надеюсь, это поможет.
В вашей ситуации я предполагаю, чтовам нужно только определить положение мыши с помощью Window Spy.