Change status of segment in Segment Status Switcher and move to next segment

Hello connoisseurs,

I am totally new to AutoHotKey. Is it a part of Studio or is it the external software that is described in Wikipedia? I need a Hotkey for the task in the thread title. A step by step description for a newbie would be nice, or maybe you can point me to a simple guide that may be available online? Paul said in another thread that the task may be so simple that maybe even someone would volunteer to write a short script for me. That would be nice Slight smile

https://community.rws.com/product-groups/trados-portfolio/trados-studio/f/studio/40375/confirm-but-not-update-tm/130996#130996

Best wishes
Matthias

emoji
Parents Reply
  • Thanks a lot! I have installed it, but my script does not work (yet):

    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    ; #Warn  ; Enable warnings to assist with detecting common errors.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    ^ä::
    Send !{ä}
    Send ^{Down}
    Return

    The first part works: "Send !{ä}" changes the status.

    The second part does not work: "Send ^{Down}" should cause the move to the next segment…

    What went wrong?

    emoji
Children