I'm trying to find a way to detect an odd page count, and then add a blank page so that every job sent through the Flow has an even page count.
I can do it with a Pitstop Server Preflight, but it gets time-consuming especially when we're doing this to 5,000 jobs.
Any ideas?
Adding Blanks to Odd Page Counts
- tdeschampsBluewest
- Member
- Posts: 100
- Joined: Tue Jun 01, 2021 11:57 am
Re: Adding Blanks to Odd Page Counts
You can detect the odd number of page by doing a check in an arrow connection, it will avoid opening pitstop for unecessary document.
If equal to 0, it's an even number, otherwise it will be 1, so an odd number.
Code: Select all
[Switch.Calculation:Expression="[Stats.NumberOfPages]%2"]
Do you like the Enfocus Apps developed by Bluewest?
Feel free to leave a comment on the Appstore!
Feel free to leave a comment on the Appstore!
Re: Adding Blanks to Odd Page Counts
Yes, That worked. Thank you.