TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
Ok. For a truly automated approach, purchase and install FrameScript. Then
write a simple script to automatically insert a blank master page when
needed. You could then run the script to automatically fix every chapter in
the book. The script required to do this would be quite simple.
Loop for each file in the book object
Initialize an object variable with the last page object in the file
Determine whether the page contains any text
If it does not
Set LastPageObject.PageBackground = BgdNone; (where
LastPageObject is a page object variable)
EndIf
EndLoop
The BgdNone property sets the master page background property to none.