最初にマウスの位置を記録するために使用したコードを次に示します (ウィンドウがタイル表示され、タイルを移動することでクリック位置が変更される可能性があるため、相対的なマウス位置は機能しませんでした)。その直後に、記録された位置でマウスをクリックします (後でコードでもこれをやり直します)。
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 でマウスの位置を決定するだけでよいと思います。