AHK to automate series of operations

Is it possible to write an AHK sequence to do the following tasks:

File -> Options

Options -> Auto-propagation

Auto-propagation: set or clear “Enable Auto-propagation” checkbox

 

Background: I frequently need to enable/disable auto-propagation

 

Unless, of course, there is a shortcut that performs this task

Parents Reply
  • The hotkey that invokes (runs) the routine is at the beginning, followed by two colons:
    ^!a
    which stands for [CTRL]+[ALT]+[A]

    The line #IfWinActive, ahk_exe SDLTradosStudio.exe makes the hotkey context depend, i.e. it only triggers if Studio is the active window; if you press the key combination with another window active, nothing will happen, or better said, any native function linked to the same key combination will be triggered.

    You can of course change this hotkey to any combination you prefer, knowing that these are the common modifiers:

    • ^ = CTRL
    • + = SHIFT
    • # = WIN-key
    • ! = ALT
Children
No Data