Susan Posted September 7, 2018 Share Posted September 7, 2018 I have a Invoice that I am using overflow pages. The front is overflow1 and the back is overflow2. Is there a way to use Page «$pagenum» of «$pagecount» so that it will just count the fronts. Example: If it composes 3 fronts and backs,I need it to number the fronts as Page 1 of 3, Page 2 of 3, Page 3 of 3 — not number fronts and backs as Page 1 of 6, Page 2 of 6, etc. Quote Link to comment Share on other sites More sharing options...
Dan Korn Posted September 7, 2018 Share Posted September 7, 2018 Make a text rule, check the "Re-evaluate this rule for every text flow" box, and do this: return "Page " + Math.ceil(FusionPro.Composition.currentPageNumber / 2) + " of " + Math.ceil(FusionPro.Composition.totalPages / 2); Quote Link to comment Share on other sites More sharing options...
Susan Posted September 7, 2018 Author Share Posted September 7, 2018 Perfect. Thanks Dan. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.