Search found 1018 matches

by freddyp
Tue Feb 27, 2024 8:26 am
Forum: PitStop Server
Topic: Unknown character in content stream
Replies: 5
Views: 2646

Re: Unknown character in content stream

There is an Action "Consolidate fonts". That sounds like it could help.

Not all rips like lots of line-art so it may not be feasible, but outlining all text is also a possible approach worth investigating.
by freddyp
Fri Feb 23, 2024 11:28 am
Forum: Flows
Topic: Pack / Unpack Job Elements failing?
Replies: 4
Views: 371

Re: Pack / Unpack Job Elements failing?

Can you please share one of the packed jobs?
by freddyp
Wed Feb 14, 2024 9:24 am
Forum: Flows
Topic: Milestone
Replies: 4
Views: 249

Milestone

I am proud to announce a (small) milestone in my career of 13 years at Enfocus. It is almost literally a milestone: the etymological roots of the word lie in the Latin word mille which means 1,000 and this is my 1,000th post on the forum. It is not my last!
by freddyp
Wed Feb 14, 2024 9:21 am
Forum: Flows
Topic: Rename job object/regex renaming question
Replies: 3
Views: 256

Re: Rename job object/regex renaming question

Here is a flow with a solution:
Rename regex.sflow.zip
(19.35 KiB) Downloaded 45 times
by freddyp
Tue Feb 13, 2024 3:53 pm
Forum: PitStop Pro
Topic: Thumbnail in the seem of the banner
Replies: 13
Views: 761

Re: Thumbnail in the seem of the banner

"Rasterize selection" can indeed easily fail on complete pages because of overprint restrictions. For creating thumbnails that is not really an issue, so look at the settings of "Rasterize selection" and make sure to check "Force into single image". See if that helps.
by freddyp
Tue Feb 13, 2024 1:46 pm
Forum: Flows
Topic: HTTP POST a body
Replies: 6
Views: 296

Re: HTTP POST a body

Ah, right. Cookies. Probably in combination with redirects. You can check that if you deactivate following redirects in Postman (in the Settings of the request). What I think you are going to see is not a 200 status code but a 3xx and in the response headers you will find that cookie. If that is the...
by freddyp
Tue Feb 13, 2024 9:10 am
Forum: Flows
Topic: HTTP POST a body
Replies: 6
Views: 296

Re: HTTP POST a body

"POST a body" with "Body content - Input job" and "POST" with "Attached file - [Job.Path]" do the same thing. It is common for web services that work with tokens to expect the token in one of the headers. There is a token in your JSON but that is perhaps not e...
by freddyp
Tue Feb 13, 2024 9:03 am
Forum: Flows
Topic: Rename job object/regex renaming question
Replies: 3
Views: 256

Re: Rename job object/regex renaming question

In the "Search and replace" action of "Rename job" you choose a private data key, say "search", for the "Search for" property and another private data key named "replace" (perhaps?) for the "Replace by" property. That makes the rename easy,...
by freddyp
Tue Feb 13, 2024 8:37 am
Forum: PitStop Pro
Topic: Thumbnail in the seem of the banner
Replies: 13
Views: 761

Re: Thumbnail in the seem of the banner

Look at the action list I posted: "Scale selection", not "Scale page content" + "Scale page boxes". In the "Scale selection" action you can do the fixed size scaling you want. Doing it this way will further simplify your action list. Now you add a page where y...
by freddyp
Mon Feb 12, 2024 1:24 pm
Forum: PitStop Pro
Topic: Thumbnail in the seem of the banner
Replies: 13
Views: 761

Re: Thumbnail in the seem of the banner

I see that you paste the thumbnail at the end of the action list: Select page 1, Paste objects from clipboard. That is indeed not going to paste on page 1 in a multipage document. It is important to realize that PitStop by default runs through the document from the beginning to the end without going...
by freddyp
Mon Feb 12, 2024 1:09 pm
Forum: Node.js scripting
Topic: Warning in messages of Switch
Replies: 4
Views: 1032

Re: Warning in messages of Switch

In regards to debugging, is it possible to run the debug in Visual Studio Code on my mac, when Switch is running in my Windows server? Remote debugging in VSC is possible ( https://learn.microsoft.com/en-us/visualstudio/debugger/remote-debugging?view=vs-2022 ) but I have never tried it. You will ha...
by freddyp
Mon Feb 12, 2024 12:20 pm
Forum: Flows
Topic: Inject Folder Name Issue
Replies: 6
Views: 282

Re: Inject Folder Name Issue

Strange. However, if injecting one folder after the other works well I suggest to place a "Hold job" in front of the "Inject job". On the outgoing connection of "Hold job" there is a property "Folder constraint". If you set that to 1 job then "Hold job&qu...
by freddyp
Mon Feb 12, 2024 9:32 am
Forum: Flows
Topic: Renaming A Folder the same as the file name
Replies: 12
Views: 633

Re: Renaming A Folder the same as the file name

I can only ask what rhd_ole was asking for, just a bit rephrased: as of where in the flow is the name wrong? Is it only at the end of the flow (Archive hierarchy) that the name is wrong, or is it somewhere along the route and at what point exactly? If you are OK with that, it is better to export the...
by freddyp
Mon Feb 12, 2024 8:54 am
Forum: PitStop Pro
Topic: Save embedded preflight profile from Certified PDF
Replies: 1
Views: 207

Re: Save embedded preflight profile from Certified PDF

Open the CertifiedPDF file in Acrobat, go to the "Certified PDF" menu and open the Certified PDF dialog: there is a "Certified Preflight Profile Comparison" section in there. I sounds like that is what you are looking for.
by freddyp
Fri Feb 09, 2024 3:59 pm
Forum: Node.js scripting
Topic: Warning in messages of Switch
Replies: 4
Views: 1032

Re: Warning in messages of Switch

The best way to troubleshoot this is to start a debugging session. As you step through the code you should see what triggers the error. In this case it is pretty easy: you have 2 job.log statements that do not have an await. I would like to make two side remarks. Everybody has their own coding style...