Quickly get to translation provider list in Project Settings

This simple script takes you to the Translation Memory and Automated Translation window under All Language Pairs.

Hotkey: tm

::TM::
Send !p   ;this is my shortcut to get to Project Settings (Alt+P), if yours is different, adapt accordingly
Sleep 100
Send Proj
Sleep 500
Send Lang
Send {Down 2}
return

Parents
  • Thanks Nora, that’s a very promising script!

    I got it to work on my computer, but perhaps you could help me take it a step further? I can’t figure out how to navigate the Project Settings screens.

    I would like to auomate adding whatever is on my clipboard to a custom field in the TM, as shown below.

    Any idea how I can get to that screen and that field with AHK?


    Trados Studio Project Settings screen showing Field Values section with two fields: 'Numero de demande' and 'Remarques'. The 'Value' column for 'Numero de demande' contains placeholder text 'Copy project name here'.

    EDIT : I got a bit further but now I’m stuck. I can’t figure out how to open the first value field with the keyboard to copy in it. Here’s what I have (hotkey and project settings shortcuts are different than in your example)

    ^+t::
    Send ^+p
    Sleep 999
    Send Proj
    Sleep 999
    Send Lang
    Sleep 999
    Send All
    Sleep 999
    Send TR
    Sleep 999
    Send U
    Sleep 999

    Send ?? Need to code tab tab here??

    ??and here I can’t figure out how to open the first value field with the keyboard!??


    return


    EDIT 2

    Well, I figured it out! Thanks for the starting point Nora, I’m super happy with this script!



    ^+t::
    Send ^+p
    Sleep 999
    Send Proj
    Sleep 999
    Send Lang
    Sleep 999
    Send All
    Sleep 999
    Send TR
    Sleep 999
    Send U
    Sleep 999
    Send {Tab 2}
    Sleep 999
    Send {F2}
    Sleep 999
    Send ^v
    Sleep 999
    Send {F2}
    Sleep 999
    Send {Enter}

    emoji


    Generated Image Alt-Text
    [edited by: Trados AI at 4:23 AM (GMT 0) on 5 Mar 2024]
Reply
  • Thanks Nora, that’s a very promising script!

    I got it to work on my computer, but perhaps you could help me take it a step further? I can’t figure out how to navigate the Project Settings screens.

    I would like to auomate adding whatever is on my clipboard to a custom field in the TM, as shown below.

    Any idea how I can get to that screen and that field with AHK?


    Trados Studio Project Settings screen showing Field Values section with two fields: 'Numero de demande' and 'Remarques'. The 'Value' column for 'Numero de demande' contains placeholder text 'Copy project name here'.

    EDIT : I got a bit further but now I’m stuck. I can’t figure out how to open the first value field with the keyboard to copy in it. Here’s what I have (hotkey and project settings shortcuts are different than in your example)

    ^+t::
    Send ^+p
    Sleep 999
    Send Proj
    Sleep 999
    Send Lang
    Sleep 999
    Send All
    Sleep 999
    Send TR
    Sleep 999
    Send U
    Sleep 999

    Send ?? Need to code tab tab here??

    ??and here I can’t figure out how to open the first value field with the keyboard!??


    return


    EDIT 2

    Well, I figured it out! Thanks for the starting point Nora, I’m super happy with this script!



    ^+t::
    Send ^+p
    Sleep 999
    Send Proj
    Sleep 999
    Send Lang
    Sleep 999
    Send All
    Sleep 999
    Send TR
    Sleep 999
    Send U
    Sleep 999
    Send {Tab 2}
    Sleep 999
    Send {F2}
    Sleep 999
    Send ^v
    Sleep 999
    Send {F2}
    Sleep 999
    Send {Enter}

    emoji


    Generated Image Alt-Text
    [edited by: Trados AI at 4:23 AM (GMT 0) on 5 Mar 2024]
Children