Studio 2019: Is there a way to remove the warning windows on the project creation page?

Hi,

I work a lot (actually always) with project templates. Each time I changeTrados Studio pop-up message asking for confirmation to proceed with changes in project template settings with Yes and No buttons. of template I get a message on which I have to click and the same when I name the project.

I find this annoying. Is there a way to disable this behaviour?

With kind regards, Manuella



Generated Image Alt-Text
[edited by: Trados AI at 7:30 PM (GMT 0) on 28 Feb 2024]
emoji
Parents
  • Hi Manuella,

    If you still want to dismiss the window without having to click Yes, I would suggest using an AutoHotkey script. I do this for all nagging windows I want to close automatically. For this particular window, it would look something like this:

    #IfWinActive ahk_exe SDLTradosStudio.exe
    #Persistent

    SetTimer, Template, 1000
    return

    Template: ;Says "Yes" to the window that asks if you want to overwrite all settings
    IfWinExist, Question, This change will overwrite all of the settings you have defined
    Send y
    return

    If you're new to AutoHotkey, do this:

    1. Download AutoHotkey from https://www.autohotkey.com › download. Install it.

    2. In a folder where you would like to save your script, right-click on any empty space and select New - AutoHotkey script. Name the file.

    3. Open the file you just created in a plain text editor, such as Notepad or Notepad++, copy the above script and paste it into the file. Save and close the file.

    4. Go to the folder where your new AutoHotkey script is saved and double-click on the file. This will load the script (make it active), you will see a little green square with a white H on it in your system tray.

    After doing this, the window will be dismissed quickly as soon as it appears. The script basically monitors your computer to watch out for the window, and as soon as it appears, it sends a "y" keystroke, which closes the window.

    Note that if you restart your computer, you will need to reload the script, unless you set it up to be loaded when Windows starts.

     

     

Reply
  • Hi Manuella,

    If you still want to dismiss the window without having to click Yes, I would suggest using an AutoHotkey script. I do this for all nagging windows I want to close automatically. For this particular window, it would look something like this:

    #IfWinActive ahk_exe SDLTradosStudio.exe
    #Persistent

    SetTimer, Template, 1000
    return

    Template: ;Says "Yes" to the window that asks if you want to overwrite all settings
    IfWinExist, Question, This change will overwrite all of the settings you have defined
    Send y
    return

    If you're new to AutoHotkey, do this:

    1. Download AutoHotkey from https://www.autohotkey.com › download. Install it.

    2. In a folder where you would like to save your script, right-click on any empty space and select New - AutoHotkey script. Name the file.

    3. Open the file you just created in a plain text editor, such as Notepad or Notepad++, copy the above script and paste it into the file. Save and close the file.

    4. Go to the folder where your new AutoHotkey script is saved and double-click on the file. This will load the script (make it active), you will see a little green square with a white H on it in your system tray.

    After doing this, the window will be dismissed quickly as soon as it appears. The script basically monitors your computer to watch out for the window, and as soon as it appears, it sends a "y" keystroke, which closes the window.

    Note that if you restart your computer, you will need to reload the script, unless you set it up to be loaded when Windows starts.

     

     

Children