I am kind of surprised that no one mentioned Easy Data Transform: https://www.easydatatransform.com/ Unbelievably mighty tool. That one time fee is a joke for what it can do. Miller is also good, yes. But EDT has the advantage that you can "click" your workflow in a GUI and you can see wha...
Hey fellow switch lovers, so far I developed about 30 node scripts for many different use cases and ~5 apps for the app store and I am reaaaally happy how this all works out within switch. One issue bothers me which leads to posting here: sending log files when using traffic light output connections...
As far as I know the "InDesign Server" configurator wants to use a locally installed InDesign Server. What if I need to use an InDesign Server that runs remote on another machine? Is there a configurator for that or do I really have to set up my own SOAP call to that InDesign Server? Does ...
I know this is an unbelievably old topic, but I actually needed it right now #!/bin/sh # sourceFilePath="$1" targetFilePath="$2" iconv -f MacRoman -t UTF-8 $sourceFilePath > $targetFilePath to convert from MacRoman to UTF-8 "File at path" as "Output" is correc...
Sad story. It only works when the parameters come back fast enough. I penetrated it with ~20 switch jobs sequentially (not even parallel) and all those jobs had the same parameters being read from a database. Don't get me wrong, but 20 test jobs is not even much, this would definitely happen in prod...
I highly appreciate your help, Thomas. When I try your code, I get: Argument of type '(value: unknown) => void' is not assignable to parameter of type 'number'. because the setTimeout returns void and something else is expected? I was eager enough to "just remove" the _resolve_ keyword/par...
We experience this even more often. Using variables from "a Database Connection" (via the Database Connection Module) as parameters for scripts seems to be broken. I don't know if this is something that only we experience? If anybody else can confirm this "behavior", this might b...
We use a SwitchScript to save values in private data fields of the job and this script works perfectly well as a legacy script. We now rewrote it as a NodeJS SwitchScript and it also works like a charm, but NOT when a parameter value for the script comes from a variable that fetches a value from a D...