Search found 358 matches

by Padawan
Thu Nov 29, 2018 9:38 am
Forum: PitStop Server
Topic: Pitstop Server reports- more detail needed
Replies: 2
Views: 4594

Re: Pitstop Server reports- more detail needed

I think the original idea was that humans would not read a long list of page numbers. Can you change the report type to xml and check that? I expect that that will contain all the page numbers.
by Padawan
Mon Nov 26, 2018 11:10 pm
Forum: LEGACY scripting
Topic: Webhook for HTTPS
Replies: 8
Views: 11594

Re: Webhook for HTTPS

Hello, No errors in Switch Messages. Yes I have the webhook setup in a flow. I'm using 'test/notify' as the URL. My put call form Postman is http://"myIP":8080/test/notify I get a 404 return... If I just enter, http://"myIP":8080 I get the messages from Enfocus PDF Review Module...
by Padawan
Mon Nov 26, 2018 5:04 pm
Forum: LEGACY scripting
Topic: Webhook for HTTPS
Replies: 8
Views: 11594

Re: Webhook for HTTPS

404 means Switch doesn't know which page to serve. Have you already setup a Webhook element in one of your flows and is the flow activated?

Do you get errors in the Switch messages?
by Padawan
Fri Nov 23, 2018 6:21 pm
Forum: Switch
Topic: Switch Messaging Filters - User Feedback Required!
Replies: 5
Views: 7711

Re: Switch Messaging Filters - User Feedback Required!

Maybe being able to load exported csv messages in the messages viewer would be useful. This way we can check old messages without having to keep them in the database itself.
by Padawan
Thu Nov 22, 2018 2:24 pm
Forum: Switch
Topic: Switch Messaging Filters - User Feedback Required!
Replies: 5
Views: 7711

Re: Switch Messaging Filters - User Feedback Required!

Yes. Filters I use in the messages are: - Enable debug and assert messages in the type column - Show only the error messages to see what kind of things went wrong recently - I do various combinations of filtering on unique prefix and job name to follow the "path" a job took thru the flow t...
by Padawan
Tue Nov 20, 2018 8:38 am
Forum: Flows
Topic: Sort and number files in reverse order
Replies: 3
Views: 3954

Re: Sort and number files in reverse order

I assume you can get the ascending number out of the filename using a variable? Then you can use the calculation variable to do 10000 minus the ascending number. The resulting number will be descending and can be used to rename the file. It doesn't have to be 10000, but it needs to be a number which...
by Padawan
Wed Nov 14, 2018 6:30 pm
Forum: Imposition
Topic: the application is not available on Switch Server
Replies: 1
Views: 7182

Re: the application is not available on Switch Server

Is it possible you haven't installed Extendscript toolkit yet? If not, please install it and restart Switch. If that doesn't fix it, please check that the versions of InDesign, SmartStream Designer and ExtendScript Toolkit version you have installed meet the system requirements. You can find them vi...
by Padawan
Wed Nov 14, 2018 8:58 am
Forum: Action Lists
Topic: Command Line Operation
Replies: 1
Views: 3937

Re: Command Line Operation

I've responded to your question in your duplicate topic:
viewtopic.php?f=17&t=2423&p=8298#p8298
by Padawan
Wed Nov 14, 2018 8:54 am
Forum: PitStop Pro
Topic: Command Line Operation
Replies: 1
Views: 3627

Re: Command Line Operation

Hello Fiery, You can trigger a job via the command line, however the only time you will save is the time it takes for the hotfolder to see the file and be sure that the file is fully written in that location. So the maximum processing time you can gain is the scanning interval of the hotfolder + the...
by Padawan
Fri Nov 09, 2018 9:24 pm
Forum: LEGACY scripting
Topic: Apply leading zero to PageCount 1-9
Replies: 3
Views: 5604

Re: Apply leading zero to PageCount 1-9

You can add leading zero's using search and replace regular expressions. Unfortunately the only way to use them without scripting is using a rename job on the filename. So you will have to add the page count to the filename, add leading zero's and get the number back out. You can add leading zero's ...
by Padawan
Thu Nov 08, 2018 1:31 pm
Forum: Flows
Topic: Rotate image on Exif-rotation
Replies: 1
Views: 3159

Re: Rotate image on Exif-rotation

I haven't tried it myself, but I think the auto-orient option of imagemagick should be able to do this: https://www.imagemagick.org/script/command-line-options.php#auto-orient You can automate imagemagick via the execute command tool. I think these settings for the execute command should do it: - Co...
by Padawan
Thu Nov 08, 2018 8:50 am
Forum: Flows
Topic: Delete non-pdf files from assembled job?
Replies: 4
Views: 4474

Re: Delete non-pdf files from assembled job?

Or use the private data added by the ungroup job which contains the job name:
Ungroup.JobName
by Padawan
Tue Nov 06, 2018 3:47 pm
Forum: PitStop Pro
Topic: Flatten transparencies?
Replies: 1
Views: 3510

Re: Flatten transparencies?

PitStop Pro doesn't contain any transparency flattening because Acrobat itself already has it. You need to open the Acrobat "Print Production" tools and then use the "Flattener Preview" button to see the functionality. PitStop Server uses the flattening library from Adobe, so the...
by Padawan
Tue Nov 06, 2018 3:44 pm
Forum: Flows
Topic: Same job, multiple preflight reports through a mail
Replies: 6
Views: 5176

Re: Same job, multiple preflight reports through a mail

The solution here is similar to the other thread. If you use the custom scheme, then you can use the "After N minutes" setting. This will tell Switch to assemble the files together after N minutes. (N being the number you filled in in the property.
by Padawan
Tue Nov 06, 2018 3:41 pm
Forum: Flows
Topic: Delete non-pdf files from assembled job?
Replies: 4
Views: 4474

Re: Delete non-pdf files from assembled job?

I would use exactly the steps as you described, however the Assemble Job has to be configured in a way that it will do the assembly with the missing PDF files. There are some ways you can handle this. In all these ways we will tap into the info that the Ungroup Job adds as private data to the ungrou...