• Call custom Batch Task from custom application that creates Studio projects

    Hi, I have programmed an application that creates Studio projects. Files are added, PerfectMatch will be applied and the pretranslation will be made. Now it is necessary to do some custom actions. For example I need to unlock all segments after the…
  • SDL Project Automation API - License check failed

    Hello, I would like to implement the SDL Project Automation API, but if I create a FileBasedProject object I get the following error: {"License check failed, with exception: Sdl.Core.PluginFramework.PluginFrameworkException: No Application specific…
  • SDL 2015 API :License check failed, with exception: Sdl.Core.PluginFramework.PluginFrameworkException: No Application specific plug-in directory found.

    Hello everyone, I’m actually developing a stand-alone program using the SDL Studio API, in order to create a Trados project via a personal interface. The problem is, at the moment I call the constructor of the FileBasedProject class, a LicensingException…
  • Updating a language-specific IProject.SettingsBundle<TranslationMemorySettings> always updates the default settings

    While automating the creation of projects, I'm trying to set a custom value inside the following element (inside the project file itself): <SettingsBundle Guid="..."> <SettingsBundle> <SettingsGroup Id="TranslationMemorySettings"> <Setting Id="ProjectSettings…
  • I want to create an project over api and project temmplate. On performing the Method "RunDefaultTaskSequence" I got an error.

    My Code ProjectInfo info = GetProjectInfo(); ProjectTemplateReference template = new ProjectTemplateReference(@"C:\Users\wes\Documents\Studio 2014\Project Templates\Werner.sdltpl"); FileBasedProject project = new FileBasedProject(info, template); ProjectFile…
  • RE: Project Automation using template

    You should change the create method and add the logic to load the project template as described in the documentation . After that you just need to use FileBasedProject constructor that accepts the template as a parameter. If you would like to create projects…