I sometimes find myself having to stop typing to move the mouse to avoid triggering tooltips that are active where I last left my mouse pointer, usually in the segment status column:
The script below uses the Insert key to move the mouse pointer out of the way, to a position where it does no harm while I'm typing:
Insert:: ;move mouse pointer out of the way
MouseMove, 1300, 8 ;use your own coordinates here
return
And this one brings the mouse pointer back to the cursor position by pressing the Insert and Home keys:
Insert & Home:: ;move mouse pointer to cursor position
MouseMove, % A_CaretX, % A_CaretY
return
Generated Image Alt-Text
[edited by: Trados AI at 4:06 AM (GMT 0) on 5 Mar 2024]