How to print specific pages out of a book file

I've searched around but I cannot find any way of printing specific pages out of a book file. Has anyone got any ideas? I have a 100 page book file with 20 files, and doing print outs of sections is a nightmare. I want to be able to print page 5 out of file A and page 6 out of file B together so I can duplex them. I've tried scripting this but I can't seem to set the page range of the print preferences of the book file.

[Jongware] wrote:
I don't think it's possible to set the page range of a Book.printPreferences
Theoretically it ought to be possible. Can't test for myself now; what does happen when you set the pageRange to overlapping sub-files?
I've just tried it with CS3. It might have been implemented in later versions.
In the print Book dialogue the page range field is disabled. You cannot enter anything there.
If you try to do it with a script it says that printPreferences is read only.

Similar Messages

  • How to print specific page in smartform !

    Hello Friends,
                  I like to print specific page in smartform. for Ex. page 4. But when I give page no. 4, the print preview not showing the exact page.
    Thank you for your time.
    Senthil

    Hi Senthil,
    chk this link you get a brief idea abt Smartforms.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRSF/BCSRVSCRSF.pdf
    Reward points if you find this helpful
    Regards,
    Harini

  • How to print specific pages of a pdf from a vb 2013 program using a print dialog

    Hi.  I am using the acrobat sdk to display pdfs from within a vb 2013 program, because the pdfs are large and we have developed indexes on certain columns.  The indexes are stored in SQL tables.  My program has a search window which allows the user to search for a value and displays all the pages on which this value appears in the indexed column in a listbox.  By double-clicking on the desired value in the listbox, the user can go to the selected page and column.  However, the user also needs to be able to highlight one or more of the pages in the listbox and print these pages.  I could do this silently using AcroExchAVDoc.PrintPages, but the user also needs to have a print dialog displayed in order to possibly select a watermark to be printed on the pages.  I also need to default the orientation of the pages depending on the document.
    I have reviewed the sdk documentation and also searched in Google and on this site but have not found a way to do this.  Does anyone have a suggestion?  Thanks for any help you can provide.
    Mary

    Hi.
    I did try using the printParams feature and it worked, but since I need to be able to print sets of non-consecutive pages,  I end up having to bring up the print dialogue multiple times and have the user set watermarks each time. 
    I decided to just create a new pdf in a temp directory containing the selected pages and open this document in a new window.  This works well and allows them to use the print button on the window to print, bringing up the print dialogue just once.  However, since I need to open the document in a way that shows the print button, I am using OpenInWindowEx, with AV_DOC_VIEW, and the option PDUseBookmarks or PDUseThumbs, rather than PDUseNone.  This displays a toolbar which also includes icons for creating a new pdf, deleting pages, etc.  I do not really want to include these icons on the toolbar.  Is there a way to remove unwanted icons from the toolbar, or make them invisible?
    Hope this makes sense.  Thanks for your help.
    Mary

  • Print specific pages in sections of book

    I want to print two sections of my book, but i don't want to print all pages in either section. When i use the "print selected documents" the page range is greyed out. Is there a way to print these duplex pages without having to print it in it's entirety? For instance: INDD #1 has three pages (numbered 1 to 3). INDD #2 has three pages (numbered 4 to 6). I only want to print duplex pages of 3 and 4. Is that possible? Please advise. Thanks in advance for your help.
    kind regards
    k

    I don't believe so. You could print to PDF (or to postscript file, then distill) and perhaps print the selected pages from the PDF, but I suspect you'd still need to place them into a new document to get the spread. There's no way ID is going to directly make a spread from pages in separate files.

  • How to print specific lines out of a Tail - N command.

    Hello,
    Here is my problem. Within a web application, one of the menu is supposed to do the following:
    Check the n lastest lines of a file (a log file in fact) and print the lines that only contain "ADD" or "DEL"
    I don't know how to do it ! Please, help !!

    This should get you started, it's a java version of tail which takes multiple files and there roll extension and runs forever (hopefully!).
    * @author Jeff Hackert, Jon Strabala
    import java.io.*;
    import java.util.*;
    public class TailIt extends Thread {
        private BufferedReader br = null;
        private Thread thread;
        private long rollTime = 0L;
        private String fname = null; // the log file
        private String rname = null; // the rolled log file
        private static boolean debug = false;
        private static synchronized void stdOut(String line) {
            System.out.println(line);
        public void run() {
            String s = null;
            boolean attail = false;
            long prev = System.currentTimeMillis();
            try {
                for(;;) {
                    s = br.readLine();
                    if ( s != null ) {
                        if (attail) {
                            TailIt.stdOut(s);
                    } else {
                        attail = true;
                        try {
                            sleep(10);
                            long now = System.currentTimeMillis();
                            if (now > prev + 5000) { // checks roll every five seconds
                                prev = now;
                                checkRoll();
                        } catch (InterruptedException ioe) {}
                    yield();
            } catch (IOException ioe) {}
        public void setRollTime() {
            File f = new File(fname);
            if (f.exists()) {
                rollTime = f.lastModified();
            } else {
                rollTime = 0;
        public void checkRoll() {
            long tmpTime = 0L;
            File f = new File(rname);
            if (f.exists()) {
                tmpTime = f.lastModified();
            if (rollTime < tmpTime) { //a roll occurred
                Date d = new Date(rollTime);
                stdOut("Log " + fname + " rolled at " + d.toString());
                try {
                    br.close();
                    br = new BufferedReader(new FileReader(fname));
                } catch (Exception e) {}
                setRollTime();
            } else {
                if (debug) System.err.println("no roll at " + rollTime + " " + tmpTime);
        public static void main(String [] args) {
            if (args.length != 0) {
                for (int i = 0; i < args.length; i = (i + 2)) {
                    if ((i + 1) == args.length) {
                        System.err.println("Usage: TailIt <log file> <roll extension> ...");
                        System.exit(0);
                    TailIt m = new TailIt();
                    try {
                        m.fname = args;
    m.br = new BufferedReader(new FileReader(m.fname));
    m.rname = m.fname + "." + args[i + 1];
    m.setRollTime();
    m.thread = new Thread(m);
    m.thread.start();
    } catch (FileNotFoundException e) {
    System.err.println(e);
    } else {
    System.err.println("Usage: TailIt <filename> <roll extension> <filename> <roll extension> ...");

  • Java print service + print specific page

    is there anybody know how to print specific page to the printer in java?
    i am using below code. it able to print any txt file from page 1 to n. it just cannot work on printing on specific page??
    code
    String fileName = "NORMAL.txt";
         DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
    //DocFlavor flavor = DocFlavor.SERVICE_FORMATTED.PAGEABLE;
         FileInputStream pclStream = new FileInputStream(fileName);
         PrintRequestAttributeSet attributes2 = new HashPrintRequestAttributeSet();
         //attributes2.add(new Copies(1));
         Doc doc = new SimpleDoc(pclStream, flavor, null );
         PrintService[] services = PrintServiceLookup.lookupPrintServices( null, attributes2);
         PrintService service = ServiceUI.printDialog(null,50,50,services,services[0],null, attributes2 );
         if(service != null) {
         DocPrintJob dpj = service.createPrintJob();
         dpj.print(doc,attributes2);

    See it!!!
    bye bye
    import javax.print.DocFlavor;
    import java.io.FileInputStream;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    import javax.print.SimpleDoc;
    import javax.print.PrintService;
    import javax.print.ServiceUI;
    import javax.print.Doc;
    import javax.print.PrintServiceLookup;
    import javax.print.DocPrintJob;
    import java.io.File;
    import java.awt.GraphicsConfiguration;
    import java.awt.Rectangle;
    import java.awt.GraphicsEnvironment;
    import java.awt.GraphicsDevice;
    public class Untitled1 {
    public Untitled1() {
    try {
    Rectangle virtualBounds = new Rectangle();
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice gd = ge.getDefaultScreenDevice();
    GraphicsConfiguration gc = gd.getDefaultConfiguration();
    String fileName = "NORMAL.txt";
    DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
    FileInputStream pclStream = new FileInputStream(fileName);
    PrintRequestAttributeSet attributes2 = new HashPrintRequestAttributeSet();
    Doc doc = new SimpleDoc(pclStream, flavor, null );
    PrintService[] services = PrintServiceLookup.lookupPrintServices( flavor, attributes2);
    PrintService service = ServiceUI.printDialog(gc,50,50,services,services[0],flavor, attributes2 );
    if(service != null) {
    DocPrintJob dpj = service.createPrintJob();
    dpj.print(doc,attributes2);
    catch (Exception err) {
    public static void main(String[] args) {
    Untitled1 untitled11 = new Untitled1();
    }

  • How can i print specific pages against searched word or name (in one print command) from 1000 pages

    how can i print specific pages against searched word or name (in one print command) from 1000 pages

    Thanks, Alex!
    ok, I try first approach in print4.vi, but Labview return an error (view jpg); if I cut From, To controls, the VI print all pages. The same things happen also if I trasform I32 in Variant.
    I don't try second approach, because at this time I have only one report
    I try also with VB macro: this is better (print3.vi) but.....if I use:
    Sub Print_Pages_From_To()
    ActiveDocument.ActiveWindow.PrintOut Range:=wdPrintFromTo, From:="2", To:="3"
    End Sub
    is ok; print the pages selected; if I use:
    Sub PrintPages()
    ActiveDocument.ActiveWindow.PrintOut  Pages:="2-3"  
    End Sub
    printer print all pages.
    what do you think?
    regards,
    Italo
    Attachments:
    print Problem.jpg ‏39 KB
    print4.vi ‏19 KB
    print3.vi ‏19 KB

  • I have a file with 64 pages in it.  How do I save and email one specific page out of the file?

    I have a file with 64 pages in it.  How do I save and email one specific page out of that file?

    With nothing but the free Reader? Take a screenshot of the page and email the image.

  • How to expose a page out of PS authenication

    How to expose a page out of PS authenication,
    Say i've a register page for a event page, i want to email blast that. how do i make that page available to user without a OPRID?, just like any other webpage?
    Thanks,
    Kaushik

    You could create a user with only the grant to read that page.
    Then configure the automatic login with this user of a specific web profile (and webserver) or if it is available for the current one used.
    Nicolas.

  • How to print the page in custom format

    Hi All,
    I've a login page like
    USER ID : Test box to enter data
    PASSWORD: Text Box to enter data
    A Button named as Print
    When i click on print button i want to print the form in custom format. when i use window.print in java script it is printing text boxes and button . but i dont want to print button and text boxes. i just want to print the user id and password entered by the user with corresponding labels.
    Can anyone suggest me how to print the page in the above format with out using the request object. coz i need to implemnt above with plain java script and html.
    Tks in Advance

    Use CSS. Check out the 'media' attribute. http://www.w3.org/TR/REC-CSS2/media.html

  • How to print last page in sap script in ladscape format?

    Hi all,
    can any 1 tell me How to print last page in sap script in ladscape format?
    Thanks In advance.
    Pravin

    Hi Pravin Sherkar,
    we can do this in SAP Scripts.
    we need to create two pages, one of landscape and another of potrait.
    now after filling the data at last we need to call the page which is of format landscape using START_FORM  function module.
    You can use condition &PAGE& = &FORMPAGES&.
    Please check this link
    Printing Portrait/Landscape in sapscript
    Re: Landscape and potrait in same layout?
    http://www.sap-img.com/ts013.htm
    Best regards,
    raam

  • How to print blank page in script

    Hi all,
    how to print blank page in script

    Hi,
    Try the command /: NEW-PAGE. Let me know if it is working.
    Ray

  • How to print different pages of sap script  from diff. trays of printer

    Hi All,
    I have the requirement in SAP script. How to print different pages from different trays in the printer.
    For example  page 1 logo and address has to print from tray-1,
                        page 2 main data print from tray-2,
                        page 3 footer data print from tray-3.
    will appreciate if u come up with solutions asap.
    Thanks in advance.

    Hi,
    May be the links given below might help you,
    SAPScript:Selecting Different Tray in SAPscript
    Print to different output tray in SAPscript/Print Workbench
    Regards,
    Hema.
    Reward points if it is useful.

  • Printing specific pages in a PDF

    What is the java code to create a print button to print specific pages in a multiple page PDF file? Help please!

    For more information on the print method, see: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.511.html
    Note the nStart and nEnd parameters in particular.

  • Can anyone explain to me how to print a page of Thumbnails of the same photo?

    Can anyone explain to me how to print a page of Thumbnails of the same picture, for wallet photos?

    In the print window select a print size that would allow many of the same photos on the page.  Click the Customize button and under settings select Multiple of the same photo per page.  In this screen shot I selected a size of 2x2. 
    Adjust the print size to get the number of photos per page that you want.
    OT

Maybe you are looking for

  • Creation of budget  billing

    Hi  dudes,   Iam  trying  to  create the budget  billing  plan. in step  1,i went  to  EA61. STEP 2:  I  eneterd the contract number. step 3.i  executed and error rises saying " contract account  so  ans o  needs to  be changd for budget  billing  01

  • Tab key used as the shortcut key when using a text entry box

    When I use the Tab key as my shortcut key for a text entry box, it works fine in preview mode but does not work in the web browser preview mode.  I have tried to understand how I can take an existing project that is built for web browser application

  • ICal Alarm: None - Corrupted Information

    When I'm creating new iCal events and go to set an Alarm, I'm now seeing the first entry in my list of previous options: None - Corrupted Information !http://img.skitch.com/20100107-jucxgwdwhyt21qdu11nk6rd284.png! It appears others have seen this pro

  • RTP formats

    Hi, I'm using AVTransmit3 code to transmit a .wav file. I have jmf.jar (cross-platform) and at first it only found and worked with 5 formats, like these:   dvi/rtp, 8000.0 Hz, 4-bit, Mono   dvi/rtp, 11025.0 Hz, 4-bit, Mono   dvi/rtp, 22050.0 Hz, 4-bi

  • Is there a charge to reactivate an expired online ...

    I only use my online number occasionally, at my vacation home that has internet but no land line. If I let my online number lapse for the three months period during which the number is still reserved for me, will there be an extra charge to reactivat