Search found 1131 matches
- Wed Feb 12, 2025 9:51 am
- Forum: Preflighting
- Topic: Slow checking for cutting guide by regular expression.
- Replies: 11
- Views: 65880
Re: Slow checking for cutting guide by regular expression.
The [Stats.Colorants] is a good approach. Checking the presence of a regular expression is easily done in a condition with variables with the operator "Matches". [Stats.Colorants] returns something like Black;All;Die;Varnish, so with a condition like this: Spot color condition.jpg true mea...
- Tue Feb 11, 2025 8:10 am
- Forum: Flows
- Topic: XPath expression issue
- Replies: 7
- Views: 32570
Re: XPath expression issue
As you are not using an XPath expression the option to work with "XML location path" is indeed easier. When choosing that way of working you can click your way through the structure of the XML and the XPath will build itself. For easy XMLs like the one you have that is more than good enough.
- Fri Feb 07, 2025 2:22 pm
- Forum: Flows
- Topic: Location Path Metadata List
- Replies: 4
- Views: 18074
Re: Location Path Metadata List
Correct, Jimmy, your method will only work with XML but it is easy to convert a JSON to XML with "JSON pickup - Pickup result - XML".
- Thu Jan 30, 2025 5:35 pm
- Forum: LEGACY scripting
- Topic: ImageMagick and Run Command issue with JPEG
- Replies: 9
- Views: 251675
Re: ImageMagick and Run Command issue with JPEG
The paths of the input file and output file that you tested in Terminal did not contain spaces. The paths to the backing folders in Switch will, and I think that is your problem. Place quotes around the paths (because there are already double quotes, I would first try with single quotes): '%%[Job......
- Thu Jan 30, 2025 8:50 am
- Forum: Flows
- Topic: Scan Folder for Jobs at different Days of the week
- Replies: 2
- Views: 11791
Re: Scan Folder for Jobs at different Days of the week
Place 2 "Submit hierarchy" elements in the flow, one defined with a time-of-week window from Monday to Monday, and the other one from Thursday to Thursday.
- Wed Jan 29, 2025 4:46 pm
- Forum: Flows
- Topic: Set private data based on Pitstop Server log
- Replies: 9
- Views: 33428
Re: Set private data based on Pitstop Server log
Matthew's solution is of course perfect and for the flow design easier than what I will suggest, but here is an approach that does not use scripting for those users that do not have the scripting module. Define two pieces of private data on a folder after having run PitStop using the following XPath...
- Fri Jan 24, 2025 3:49 pm
- Forum: PitStop Pro
- Topic: Non Printing Layers Printing after Imposition
- Replies: 3
- Views: 15619
Re: Non Printing Layers Printing after Imposition
Impostrip is not a rip, it is an imposition program, and that matters. The proofers you mention have rips and for a rip it is easy to honor the printing/nonprinting setting of a layer. For an imposition program that is different. What imposition programs do is place multiple pages from multiple file...
- Thu Jan 16, 2025 9:51 am
- Forum: Switch
- Topic: trimbox for many page
- Replies: 14
- Views: 49549
Re: trimbox for many page
There is an app for that:
Code: Select all
https://www.enfocus.com/en/appstore/product/fastlane
- Thu Jan 09, 2025 11:39 am
- Forum: PitStop Pro
- Topic: Locate Bookmark (page) and insert blank page if page number is even
- Replies: 4
- Views: 16292
Re: Locate Bookmark (page) and insert blank page if page number is even
(Select pages with bookmarks optionally matching Name: "54321" ) If all your top-level bookmarks start with 54321 and the lower-level do not, then you indeed have a way of filtering only the top-level ones. However, it is not with 54321 as a regular expression that it will work, but with ...
- Wed Jan 08, 2025 11:11 am
- Forum: PitStop Pro
- Topic: Locate Bookmark (page) and insert blank page if page number is even
- Replies: 4
- Views: 16292
Re: Locate Bookmark (page) and insert blank page if page number is even
The order of the actions in your action list is incorrect. The operators AND/OR/NOT have to come AFTER the operands. The correct order is: Select pages with bookmarks Select even pages AND Add pages Do your documents only have top-level bookmarks, or do they form a tree structure. If the latter, it ...
- Mon Dec 09, 2024 3:39 pm
- Forum: Action Lists
- Topic: text on path
- Replies: 2
- Views: 14156
Re: text on path
In the PDF format text is placed starting from an XY position with a certain graphic state (color, size, font, leading, rotation, scaling, ...) in a straight line. The text could be rotated 23.74% or stretched 10.42%, but such transformations are valid for the complete line. Note another implication...
- Fri Dec 06, 2024 3:19 pm
- Forum: Preflighting
- Topic: RGB Fail
- Replies: 7
- Views: 15637
Re: RGB Fail
I just cant figure out how to fail RGB files that the name doesn't include _ARGB in the file name. That is exactly what the flow illustrates of which I added a screenshot: PitStop separates files with RGB from files without RGB by using the output level of the outgoing connections, and then the RGB...
- Thu Dec 05, 2024 10:07 am
- Forum: Preflighting
- Topic: RGB Fail
- Replies: 7
- Views: 15637
Re: RGB Fail
Screenshot 2024-12-05 at 10.02.52.png The CMYK files come out of PitStop Server through a different output than the RGB files, if you set the "Output level" correctly of course. The condition for the "bad" RGB files is from the folders RGB to Not OK for GMG, and the connection f...
- Wed Dec 04, 2024 4:25 pm
- Forum: Preflighting
- Topic: RGB Fail
- Replies: 7
- Views: 15637
Re: RGB Fail
I would not let the job end up in Problem jobs, because you still want to continue with it, you just want to do different things. The first thing you do is preflight the file for RGB. If it fails, it follows the error connection out of PitStop Server into a folder, and from that folder you add 2 out...
- Wed Dec 04, 2024 3:32 pm
- Forum: Flows
- Topic: Order then Rename Jobs
- Replies: 8
- Views: 11302
Re: Order then Rename Jobs
Given B1_1_1HANDLE_WOODMOUNT9_2762543_001.PNG if B1, 1, HANDLE, WOODMOUNT9, 2762543, 001 are all available as private data keys you can just use "Rename job - Action 1 - Replace" and in the single-line text with variables concatenate them in a different order. Should that not be the case y...