Search found 358 matches

by Padawan
Fri Aug 20, 2021 6:28 pm
Forum: Node.js scripting
Topic: Dialog Boxes in AI
Replies: 3
Views: 3547

Re: Dialog Boxes in AI

In which propery of the Illustrator configurator are you using the script? It should be in the open property of the Illustrator configurator. That being said, as far as i know the custom script does exactly the same as the standard functionality of Illustrator: it asks Illustrator not to display ale...
by Padawan
Thu Aug 19, 2021 7:13 am
Forum: PitStop Pro
Topic: copying image from one file to another
Replies: 5
Views: 7176

Re: copying image from one file to another

Can you double check that you have the PitStop Pro selection tool (green arrow) active, both when you copy from the old document and when you paste in the new document?
by Padawan
Fri Aug 13, 2021 5:15 pm
Forum: Switch
Topic: SwitchScriptExecutor 50000 script entry points
Replies: 1
Views: 2338

Re: SwitchScriptExecutor 50000 script entry points

This is perfectly normal.

The script executor might have been doing different tasks from different flow elements since the moment you started switch. that's how you can get 50000 entry points.
by Padawan
Thu Aug 12, 2021 10:08 pm
Forum: Applications
Topic: Using PDFTK to remove password from PDFs
Replies: 2
Views: 7225

Re: Using PDFTK to remove password from PDFs

If you use "Run Command", then you can use the error out connection to sort out failed jobs.
https://www.enfocus.com/en/appstore/product/run-command

You will also need to have switch 2021 spring to run it.
by Padawan
Thu Aug 12, 2021 9:59 pm
Forum: Flows
Topic: Switch and Tesseract
Replies: 4
Views: 3628

Re: Switch and Tesseract

Have you tried the Run Command app?
https://www.enfocus.com/en/appstore/product/run-command

The command will be something like this:
/path/to/tesseract "%%InputFilePath%%" "[Job.FileNameProper].txt" -L deu
by Padawan
Thu Aug 05, 2021 3:43 pm
Forum: Flows
Topic: Add data to the description metadata of a pdf
Replies: 22
Views: 19476

Re: Add data to the description metadata of a pdf

I've created a flow with minimal scripting which does this: z-Demo of processing info updated.sflow.zip - Create an XML dataset using the "Create Log" app - Store the path to the dataset as private data using "Data Mapper" and a small script expression: var ds = job.getDataset(&q...
by Padawan
Thu Aug 05, 2021 3:10 pm
Forum: Flows
Topic: Add data to the description metadata of a pdf
Replies: 22
Views: 19476

Re: Add data to the description metadata of a pdf

If the path tot the dataset is stored in private data, then you can access it in execute command using a variable:
[Job.PrivateData:Key="PrivateDataFieldContainingPath"]
by Padawan
Thu Aug 05, 2021 9:15 am
Forum: Flows
Topic: Add data to the description metadata of a pdf
Replies: 22
Views: 19476

Re: Add data to the description metadata of a pdf

Some idea's to optimize it:
- Adjust the code of the "Write XML" script to store the text as dataset to the job + store the path to the dataset as private data
- Then use private data containing the path in the Execute Command

(Did not test this, but I think it should work)
by Padawan
Fri Jul 16, 2021 10:16 pm
Forum: Switch
Topic: ODBC data sources
Replies: 1
Views: 3982

Re: ODBC data sources

Have you set it up in your os as odbc datasource already?

You can find more information here
https://www.enfocus.com/manuals/UserGui ... bases.html
by Padawan
Wed Jul 07, 2021 7:51 pm
Forum: Node.js scripting
Topic: Typescript / compile
Replies: 4
Views: 4483

Re: Typescript / compile

If you want to automatically run the command on save, then I think you should be able to use this vs code extension
https://marketplace.visualstudio.com/it ... .RunOnSave

I haven't tested it myself, so I can't help with the configuration.
by Padawan
Wed Apr 28, 2021 9:47 am
Forum: Flows
Topic: WebDav
Replies: 1
Views: 2218

Re: WebDav

Switch runs with elevated permissions. This causes an issue when you setup mapped network drives in Explorer because these are only available for processes with normal permissions. You can make mapped drives available for Switch by: - Googling how to map the network drive via the Windows Cmd Prompt ...
by Padawan
Tue Apr 27, 2021 8:31 am
Forum: Flows
Topic: Odd folder behavior
Replies: 3
Views: 2971

Re: Odd folder behavior

For Machine 2: When you process a file thru PitStop Server, then the output file won't have the same permissions as the input file. This is because technically, the output file is not an adjusted version of the input file, it is a completely new file written from scratch. Hence it has the default pe...
by Padawan
Fri Apr 23, 2021 12:09 pm
Forum: Switch
Topic: Receive E-Mails as ".eml" possible?
Replies: 1
Views: 2563

Re: Receive E-Mails as ".eml" possible?

I haven't done this before. If I had to do this I would search in the direction of having a mail client like outlook and automating it via scripting to get the mails to save as eml files. On mac you may use applescript, on windows powershell or something similar. This will not be a super easy path s...
by Padawan
Tue Mar 30, 2021 12:03 pm
Forum: Preflighting
Topic: PitStop Report within a checkpoint does not link to PDF
Replies: 4
Views: 15371

Re: PitStop Report within a checkpoint does not link to PDF

The suggestion from Enfocus was to generate an 'Annotated Report' instead so the operator can view the PDF with the problem areas overlaid, but then they still have to open the PDF and compare it against the annotated report to make the corrections. Have you tried for the operator to make the corre...