Hotkeys used within AHK scripts no longer working

Hotkeys used within AHK scripts (such as ^a,  ^c, etc.) don't seem to work any more after I installed Trados Studio 2021 SR2 - 16.2.8.9097 yesterday. Most of my AHK scripts no longer work.

Parents Reply
  • Hi Paul:

    See this test script as an example, which is an excerpt from a longer script:

    ;-----------------------------
    ;Ctrl+Shift X
    ;Testing Ctrl-a, Ctrl-C
    ;-----------------------------
    ^+x::
    clipboard :=
    Send ^a^c
    ClipWait, 2
    if (ErrorLevel > 0) {
    Msgbox Error=%errorlevel%
    Exit
    }
    Msgbox %clipboard%
    Return

    This works correctly in MS Word but not in Trados Studio 2021 SR2 - 16.2.8.9097. But it has worked correctly in Studio as well before.

    I'm really at a loss what might be wrong here.

    Kind regards,

    -Friedrich

Children