I am not sure exactly what you want to accomplish. - If you need two kinds of PDFs (interactive and print), export the page ranges separately to produce two different files. - If you need all pages exported, but want only certain pages viewed, while others are hidden, then this could be accomplished with a workaround in Acrobat. You just can't hide pages from view, but you can have attachments. The attachments could be the hidden pages that are activated with a button. - If you need all pages exported, but want a visitor to be able to print only a certain range, then this can be done in Acrobat with a button and javascript. The following js this.print(true, 0, 1, 2, 5, 7,); would print pages 1, 2, 3, 6, 8 of document.
... View more