Jeff Odom Posted July 31, 2018 Share Posted July 31, 2018 I have a booklet that I want the end user to be able to view all pages, cover and text. The end user can add a custom letter to page 2 of the text, I have this working. But I only want the text pages imposed. I've played with the !IsPreview and with Composition object but haven't had any luck. Link to comment Share on other sites More sharing options...
step Posted July 31, 2018 Share Posted July 31, 2018 You could try this in your OnRecordStart callback: // All pages to compose during composition. var pagesToImpose = [3, 4, 5, 6]; var page = 0; while (++page) { try { var compose = pagesToImpose.indexOf(page) > -1 || IsPreview(); FusionPro.Composition.SetBodyPageUsage(page, compose); } catch (e) { break; } } Link to comment Share on other sites More sharing options...
Jeff Odom Posted August 2, 2018 Author Share Posted August 2, 2018 That work perfectly. Thanks! Link to comment Share on other sites More sharing options...
Recommended Posts