How to print multiple pages in OAF without opening the doc

Hi,
I have a search page, where i get multiple rows in the result page. In the result page i have a column with the docs attached(PDF format). I also have the option of selecting the multiple rows with a single click.
My question is say if i get 10 rows in result page with the PDF pages attached. I would like to print the 10 pdf's without opening them in a single go.
Any help/suggestions appreciated.
Regards
mac

Hi,
I have a search page, where i get multiple rows in the result page. In the result page i have a column with the docs attached(PDF format). I also have the option of selecting the multiple rows with a single click.
My question is say if i get 10 rows in result page with the PDF pages attached. I would like to print the 10 pdf's without opening them in a single go.
Any help/suggestions appreciated.
Regards
mac

Similar Messages

  • Can anybody explain how to print multiple copies of different documents at the same time as at the moment I have to open each individually and press print

    Can anybody explain how to print multiple copies of different documents at the same time as at the moment I have to open each individually and press print

    is this a windows in bootcamp question ?

  • How to print multiple pages in single spool in smartforms

    Hi all,
      I have a issue on to print multiple pages in single spool,i can able to print multiple pages in multiple spool .I am doing Check Print smartforms in that i need to print Multiple pages in single spool.Currently i am using the below code please help to solve this issue.
    IF gv_tabix = 1.
    lwa_outp_option-tdnewid = 'X'.
    ELSE.
    lwa_outp_option-tdnewid = ' '.
    ENDIF.
    Thanks,
    Deesanth

    Hi
    TABLES: spfli.
    DATA:
      t_spfli type STANDARD TABLE OF spfli.
    DATA:
      fs_spfli TYPE spfli.
    DATA:
      w_form TYPE tdsfname,
      w_flag TYPE i,
      f_nam TYPE rs38l_fnam,
      w_input TYPE ssfcompin,
      w_control TYPE ssfctrlop.
    SELECTION-SCREEN BEGIN OF BLOCK blk WITH FRAME.
    SELECT-OPTIONS s_carrid FOR spfli-carrid.
    SELECTION-SCREEN END OF BLOCK blk .
    SELECTION-SCREEN BEGIN OF BLOCK block1 WITH FRAME.
    PARAMETERS:
      p_single RADIOBUTTON GROUP rad1,
      p_ind RADIOBUTTON GROUP rad1.
    SELECTION-SCREEN END OF BLOCK block1.
    START-OF-SELECTION.
    PERFORM display_data.
    PERFORM ssf_function_module_name.
    PERFORM spool_request.
    *& Form display_data
    * text
    * --> p1 text
    * <-- p2 text
    FORM display_data .
    SELECT * FROM spfli INTO TABLE t_spfli WHERE carrid IN s_carrid.
    ENDFORM. " display_data
    *& Form ssf_function_module_name
    * text
    * --> p1 text
    * <-- p2 text
    FORM ssf_function_module_name .
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING formname = ' '
    IMPORTING fm_name = f_nam
    EXCEPTIONS no_form = 1
    no_function_module = 2.
    * IF sy-subrc NE 0.
    * MESSAGE 'Form cannot be displayed' TYPE 'E' .
    * ENDIF. " IF sy-subrc eq 0
    ENDFORM. " ssf_function_module_name
    *& Form spool_request
    * text
    * --> p1 text
    * <-- p2 text
    FORM spool_request .
    w_input-dialog = 'X'.
    CALL FUNCTION 'SSFCOMP_OPEN'
    EXPORTING input = w_input
    EXCEPTIONS error = 1.
    *" LOOP AT t_spfli .....................................................
    LOOP AT t_spfli INTO fs_spfli.
    w_control-no_open = ' '.
    w_control-no_close = ' '.
    *"Single spool request..................................................
    IF p_single EQ 'X'.
    w_control-no_open = 'X'.
    w_control-no_close = 'X'.
    ELSE.
    *"Individual spool request.............................................
    IF w_flag NE '1'.
    w_control-no_open = 'X'.
    w_control-no_close = ' '.
    w_flag = 1.
    CALL FUNCTION ' '
    EXPORTING control_parameters = w_control
    fs_spfli = fs_spfli
    EXCEPTIONS formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4.
    endif. " IF w_flag ne '1'
    ENDIF. " IF p_single eq 'X'.
    CALL FUNCTION ' '
    EXPORTING
    control_parameters = w_control
    fs_spfli = fs_spfli
    EXCEPTIONS formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4.
    ENDLOOP. " LOOP at t_spfli into ...
    *&This function module close the spool request *
    CALL FUNCTION 'SSFCOMP_CLOSE'
    EXCEPTIONS error = 1.
    ENDFORM. " spool_request
    Regards,
    Sravanthi

  • How to view source of email message without opening the message?

    In addition to Verizon Email, I use Windows Live Mail.  With Windows Live Mail I can view the source of a message without opening the message.  This way I can find out if the message is legitimate or spam before potentially getting hit with malware from a bogus message by opening it.  I can then set up a blocking rule so a bogus message from either the sender or the domain never appears in my Inbox.  I have not found a way to do this in Verizon EMail. 
    Is there a way to view the source of a message without opening the message in Verizon EMail?  Right clicking just opens the message which I do not want to do.

    computerbug,
    You can get a preview of your email.  Log into the Verizon account and go to email > in the top you will see
    Conversations
    Contacts
    Calendars
    Settings
    Click on settings < General settings > Display and you will see 2 options for email view.
    (Preview is not available, if the resolution is less than 1024 by 768 pixels)
    Thanks,
    Tonya D

  • How to write IPTC metadata to files without opening the file?

    HI,
    I'm trying to run a script (preferably in JS) that allows me to write metadata to a file. I can acheive this very easily by opening the file, but I'd need to batch process many large images, so opening them would cause severe slowness. The purpose of adding the metadata to the files is to search upon them in Bridge.
    We're using CS5, but have CS6 if it's better to use.
    My Script
    // set current doc ref
    var docRef = app.activeDocument;
    // Set caption in active document
    docRef.info.caption = "Some Meta-Data";
    Do I need to use bridge to write the metadata without opening the file? Or can running the script in PS allow me to do so?
    Thanks,
    Tom

    Its easy if you use XMP metadata.
    app.activeDocument.info.caption (in photoshop script metadata)
    and it is the same field as:
         Dublin Core namespace
         namespace:     http://purl.org/dc/elements/1.1/
         Property:          description
    you change description on XMP = you are changing the same image.info.caption
    Your answer is here:
    http://forums.adobe.com/message/5743730#5743730

  • How to print multiple pages using Internet Explorer with af:showPrintablePageBehavior

    Hello,
    I am facing one issue with using af:showPrintablePageBehavior. I found similar posts and google pages, but unable to fix the issue. Most relevant post is,
    Print issues with af:showPrintablePageBehavior and Internet Explorer
    I have a page show in a af:popup. This page contain a Title in the top, af:outputText and a Print button below it. I have added af:showPrintablePageBehavior to Print button. I am using lots of data in the af:outputText. When I click on Print button, showPrintablePageBehavior is opening new browser window with multiple pages. But when I click on the Print Preview or Print, only first page is shown.
    I have tried the solution mentioned in above post but no luck.
        <f:verbatim>
            <style type="text/css">
                textarea {
                    width: 95%;
                    height: 350px;
                    overflow: auto;
                @agent ie {
                    af|document:maximized::printable {
                        position: static;
            </style>
      </f:verbatim>
      <af:panelStretchLayout bottomHeight="10%" startWidth="0%" endWidth="0%" topHeight="10%" inlineStyle="height: 100%; width: 100%">
      <f:facet name="top">
      <af:panelGroupLayout id="pnlGrpTitle"  layout="vertical" halign="center" inlineStyle="width: 100%;">
      <af:spacer id="titleSpacer" height="10px" />
      <af:label value="Title" inlineStyle="font-weight:bold; font-size: 16px; color:#000066; padding-left: 5px" id="dialogTitle" />
      <af:spacer id="titleSpacer2" height="20px" />
      </af:panelGroupLayout>
      </f:facet>
      <f:facet name="center">
      <af:panelStretchLayout bottomHeight="0" topHeight="0" startWidth="0" endWidth="0">
      <f:facet name="center">
      <af:panelStretchLayout bottomHeight="0" topHeight="25" startWidth="0" endWidth="0">
      <f:facet name="center">
      <af:panelGroupLayout id="pnlTextArea" layout="scroll">
      <af:outputText binding="#{mybean.tfdArea}" escape="false" id="tfdArea" />
      </af:panelGroupLayout>
      </f:facet>
      </af:panelStretchLayout>
      </f:facet>
      </af:panelStretchLayout>
      </f:facet>
      <f:facet name="bottom">
      <af:panelGroupLayout id="pnlGrpBottom" layout="vertical" halign="center" inlineStyle="width: 100%">
      <af:commandToolbarButton id="cbPrint" shortDesc="Print" icon="/images/print.png" inlineStyle="width: 40%" >
      <!--af:clientListener method="self.print" type="action"/-->
      <af:showPrintablePageBehavior />
      </af:commandToolbarButton>
      </af:panelGroupLayout>
      </f:facet>
      </af:panelStretchLayout>
    Any idea how to fix it?
    - Sujay

    Hello,
    I am facing one issue with using af:showPrintablePageBehavior. I found similar posts and google pages, but unable to fix the issue. Most relevant post is,
    Print issues with af:showPrintablePageBehavior and Internet Explorer
    I have a page show in a af:popup. This page contain a Title in the top, af:outputText and a Print button below it. I have added af:showPrintablePageBehavior to Print button. I am using lots of data in the af:outputText. When I click on Print button, showPrintablePageBehavior is opening new browser window with multiple pages. But when I click on the Print Preview or Print, only first page is shown.
    I have tried the solution mentioned in above post but no luck.
        <f:verbatim>
            <style type="text/css">
                textarea {
                    width: 95%;
                    height: 350px;
                    overflow: auto;
                @agent ie {
                    af|document:maximized::printable {
                        position: static;
            </style>
      </f:verbatim>
      <af:panelStretchLayout bottomHeight="10%" startWidth="0%" endWidth="0%" topHeight="10%" inlineStyle="height: 100%; width: 100%">
      <f:facet name="top">
      <af:panelGroupLayout id="pnlGrpTitle"  layout="vertical" halign="center" inlineStyle="width: 100%;">
      <af:spacer id="titleSpacer" height="10px" />
      <af:label value="Title" inlineStyle="font-weight:bold; font-size: 16px; color:#000066; padding-left: 5px" id="dialogTitle" />
      <af:spacer id="titleSpacer2" height="20px" />
      </af:panelGroupLayout>
      </f:facet>
      <f:facet name="center">
      <af:panelStretchLayout bottomHeight="0" topHeight="0" startWidth="0" endWidth="0">
      <f:facet name="center">
      <af:panelStretchLayout bottomHeight="0" topHeight="25" startWidth="0" endWidth="0">
      <f:facet name="center">
      <af:panelGroupLayout id="pnlTextArea" layout="scroll">
      <af:outputText binding="#{mybean.tfdArea}" escape="false" id="tfdArea" />
      </af:panelGroupLayout>
      </f:facet>
      </af:panelStretchLayout>
      </f:facet>
      </af:panelStretchLayout>
      </f:facet>
      <f:facet name="bottom">
      <af:panelGroupLayout id="pnlGrpBottom" layout="vertical" halign="center" inlineStyle="width: 100%">
      <af:commandToolbarButton id="cbPrint" shortDesc="Print" icon="/images/print.png" inlineStyle="width: 40%" >
      <!--af:clientListener method="self.print" type="action"/-->
      <af:showPrintablePageBehavior />
      </af:commandToolbarButton>
      </af:panelGroupLayout>
      </f:facet>
      </af:panelStretchLayout>
    Any idea how to fix it?
    - Sujay

  • How to print multiple pages of same form with one print command

    Hi,
    I have created a cheque print form in smartform. There is provision to print multiple cheques. I give multiple cheque numbers from my selection screen and for each cheque the smart form is called in loop.  Currently I get preview of 1st cheque then I print 1st cheque then click on back, cancel or exit button and then I get preview of second cheque ans so on...
    Now I want to print all the cheques with one print command.
    Please advice.
    Regards,

    Instead of looping at the smartform multiple times, pass an internal table with the data content to the smartform and use loop/ Table youroption  in ur smartform in the main window.in this way u can achieve printing multiple cheques at once and avoid previewing the document several times.
    Edited by: Mithun Shetty on Feb 25, 2011 8:56 PM

  • I can't print multiple pages from a website using the site's print button or 'file - print' and if I try to save as a PDF, it still only saves the first page and then cuts off.

    I'm using Mac OS X 10.5.8 and Firefox version 3.6.8. When I'm on a website and try to print the info on the site, whether I use the site's own 'print' option, or I go to the Firefox toolbar and try to use 'File->Print', only 1 page prints out - it just cuts off mid-page. If I try to save as a PDF instead, the same thing happens in exactly the same spot - it saves as a 1-page PDF and cuts off in the middle of the page. I've already tried all of the suggestions here https://support.mozilla.com/en-US/kb/Printing+a+web+page?s=printing&as=s and the suggestions here http://kb.mozillazine.org/Problems_printing_web_pages and nothing has worked.
    I appreciate any help!!

    I have the same problem... not being able to print website 'Print' pages. I have read carefully the above link and have followed the reset directions in about:config, but I still cannot print in Firefox. Both Google Chrome and IE work perfectly every time. I have verified that the correct printer is selected and that the margins are in order (0.5 all around happen to be what mine are set for). I have resorted to use the Firefox Add On "View this Page in IE" whenever I need to print something. Works like a charm, but come on... it should work in Firefox too! I know there is some setting or something, but the Problems_printing_web_pages link had nothing there that worked for me.

  • Flex 1.5 -PRINTING MULTIPLE PAGES

    hi,
    plz tell me how to print multiple pages in flex 1.5.
    i hv used the fillowing function.it works well but sometimes
    it HANGS OUT the application.
    function doPrintForm() {
    var currentScaleX:Number = msgnonvisual.scaleX;
    var currentScaleY:Number = msgnonvisual.scaleY;
    var currentScaleX1:Number = msgnonvisual1.scaleX;
    var currentScaleY1:Number = msgnonvisual1.scaleY;
    var currentScaleX2:Number = msgnonvisual2.scaleX;
    var currentScaleY2:Number = msgnonvisual2.scaleY;
    var currentScaleX3:Number = msgnonvisual3.scaleX;
    var currentScaleY3:Number = msgnonvisual3.scaleY;
    var currentScaleX4:Number = msgnonvisual4.scaleX;
    var currentScaleY4:Number = msgnonvisual4.scaleY;
    var currentScaleX5:Number = msgnonvisual5.scaleX;
    var currentScaleY5:Number = msgnonvisual5.scaleY;
    var currentScaleX6:Number = msgnonvisual6.scaleX;
    var currentScaleY6:Number = msgnonvisual6.scaleY;
    var tempHeight=msgnonvisual.height;
    msgnonvisual.height=800;
    msgnonvisual1.height=800;
    msgnonvisual2.height=800;
    msgnonvisual3.height=800;
    msgnonvisual4.height=800;
    msgnonvisual5.height=800;
    msgnonvisual6.height=800;
    msgnonvisual.scaleX=65;
    msgnonvisual.scaleY=65;
    msgnonvisual1.scaleX=65;
    msgnonvisual1.scaleY=65;
    msgnonvisual2.scaleX=65;
    msgnonvisual2.scaleY=65;
    msgnonvisual3.scaleX=65;
    msgnonvisual3.scaleY=65;
    msgnonvisual4.scaleX=65;
    msgnonvisual4.scaleY=65;
    msgnonvisual5.scaleX=65;
    msgnonvisual5.scaleY=65;
    msgnonvisual6.scaleX=65;
    msgnonvisual6.scaleY=65;
    var msgtext:String=msgta.text;
    var printtext:String=msgta.text;
    var inxnum:Number;
    var actendindex:Number;
    var srtindstr:String="";
    var countindex:Number=0;
    var countpj:Number=1;
    //var SS:String="";
    var srtidx:Number=0;
    var pj_array:Array = new Array();
    var pj:PrintJob = new PrintJob();
    if(pj.start() != true){
    delete pj;
    return;
    try{
    for (var
    startpoint:Number=0;startpoint<msgtext.length;startpoint++)
    var temp = mx.core.UIObject.useLayoutManager;
    inxnum=msgtext.indexOf("'",startpoint);
    startpoint=inxnum;
    // trace("FLEX ERROR
    ->>>>>>>>>>----->>>.>>>>>>>.>>>>>>>"+startpoint
    pj_array[countindex]=inxnum;
    countindex++;
    if(countindex%49==0 && countindex>48)//
    ||(printtext.length-startpoint)<34
    var endidx:Number=srtidx+48;
    actendindex=pj_array[endidx];
    actendindex++;
    if(countpj==1)
    msgnonvisual.text=printtext.substring(0,actendindex);
    mx.core.UIObject.useLayoutManager = false;
    mx.managers.LayoutManager.updateNow();
    mx.core.UIObject.useLayoutManager = temp;
    //pj.orientation == "landscape";
    pj.addPage(msgnonvisual, {xMin:0,xMax:900,yMin:0,yMax:700});
    }else if(countpj==2)
    msgnonvisual1.text=printtext.substring(pj_array[srtidx]+1,actendindex);
    mx.core.UIObject.useLayoutManager = false;
    mx.managers.LayoutManager.updateNow();
    mx.core.UIObject.useLayoutManager = temp;
    //pj.orientation == "landscape";
    pj.addPage(msgnonvisual1,
    {xMin:0,xMax:900,yMin:0,yMax:700});
    }else if(countpj==3)
    msgnonvisual2.text=printtext.substring(pj_array[srtidx]+1,actendindex);
    mx.core.UIObject.useLayoutManager = false;
    mx.managers.LayoutManager.updateNow();
    mx.core.UIObject.useLayoutManager = temp;
    //pj.orientation == "landscape";
    pj.addPage(msgnonvisual2,{xMin:0,xMax:900,yMin:0,yMax:700});
    }else if(countpj==4)
    msgnonvisual3.text=printtext.substring(pj_array[srtidx]+1,actendindex);
    mx.core.UIObject.useLayoutManager = false;
    mx.managers.LayoutManager.updateNow();
    mx.core.UIObject.useLayoutManager = temp;
    //pj.orientation == "landscape";
    pj.addPage(msgnonvisual3,
    {xMin:0,xMax:900,yMin:0,yMax:700});
    }else if(countpj==5)
    msgnonvisual4.text=printtext.substring(pj_array[srtidx]+1,actendindex);
    mx.core.UIObject.useLayoutManager = false;
    mx.managers.LayoutManager.updateNow();
    mx.core.UIObject.useLayoutManager = temp;
    //pj.orientation == "landscape";
    pj.addPage(msgnonvisual4,{xMin:0,xMax:900,yMin:0,yMax:700});
    }else if(countpj==6)
    msgnonvisual5.text=printtext.substring(pj_array[srtidx]+1,actendindex);
    mx.core.UIObject.useLayoutManager = false;
    mx.managers.LayoutManager.updateNow();
    mx.core.UIObject.useLayoutManager = temp;
    //pj.orientation == "landscape";
    pj.addPage(msgnonvisual5,
    {xMin:0,xMax:900,yMin:0,yMax:700});
    srtidx=srtidx+48;
    countpj++;
    if(countindex > 48)
    var arrlen:Number=pj_array.length;
    // var lendiff:Number=arrlen-srtidx;
    // mx.controls.Alert.show("Length Diff"+lendiff,"CCS");
    --arrlen;
    var actendindex:Number=pj_array[arrlen];
    actendindex++;
    msgnonvisual6.text=printtext.substring(pj_array[srtidx]+1,actendindex);
    mx.controls.Alert.show(pj_array[srtidx]+"\n"+actendindex,"CCS");
    var temp = mx.core.UIObject.useLayoutManager;
    mx.core.UIObject.useLayoutManager = false;
    mx.managers.LayoutManager.updateNow();
    mx.core.UIObject.useLayoutManager = temp;
    //pj.orientation == "landscape";
    pj.addPage(msgnonvisual6,
    {xMin:0,xMax:900,yMin:0,yMax:700});
    }else
    msgnonvisual6.text=printtext;
    var temp = mx.core.UIObject.useLayoutManager;
    mx.core.UIObject.useLayoutManager = false;
    mx.managers.LayoutManager.updateNow();
    mx.core.UIObject.useLayoutManager = temp;
    //pj.orientation == "landscape";
    pj.addPage(msgnonvisual6,
    {xMin:0,xMax:900,yMin:0,yMax:700});
    pj.send();
    }finally
    msgnonvisual.height=tempHeight;
    msgnonvisual1.height=tempHeight;
    msgnonvisual2.height=tempHeight;
    msgnonvisual3.height=tempHeight;
    msgnonvisual4.height=tempHeight;
    msgnonvisual5.height=tempHeight;
    msgnonvisual6.height=tempHeight;
    var temp = mx.core.UIObject.useLayoutManager;
    mx.core.UIObject.useLayoutManager = false;
    mx.managers.LayoutManager.updateNow();
    mx.core.UIObject.useLayoutManager = temp;
    msgnonvisual.text="";
    msgnonvisual1.text="";
    msgnonvisual2.text="";
    msgnonvisual3.text="";
    msgnonvisual4.text="";
    msgnonvisual5.text="";
    msgnonvisual6.text="";
    msgnonvisual.scaleX=currentScaleX;
    msgnonvisual.scaleY=currentScaleY;
    msgnonvisual1.scaleX=currentScaleX1;
    msgnonvisual1.scaleY=currentScaleY1;
    msgnonvisual2.scaleX=currentScaleX2;
    msgnonvisual2.scaleY=currentScaleY2;
    msgnonvisual3.scaleX=currentScaleX3;
    msgnonvisual3.scaleY=currentScaleY3;
    msgnonvisual4.scaleX=currentScaleX4;
    msgnonvisual4.scaleY=currentScaleY4;
    msgnonvisual5.scaleX=currentScaleX5;
    msgnonvisual5.scaleY=currentScaleY5;
    msgnonvisual6.scaleX=currentScaleX6;
    msgnonvisual6.scaleY=currentScaleY6;
    delete pj;
    msgnonvisual,msgnonvisual1, msgnonvisual2, msgnonvisual3,
    msgnonvisual4,msgnonvisual5,msgnonvisual6 are the non visual
    TextArea 's filled at runtime.
    can anyone guide me?
    thanks in advance!
    vinay

    hv anyone managed to see the code?

  • 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.

  • How to print multiple footers for each page in RTF template xml report.

    Hi,
    How to print multiple footers for each page in RTF template xml report.
    i am able to print ( two sets ) ...
    up to last page ( one template ) and for last page ( another template).
    i want to change the footer information based on the group value printed in the report ( it might be 5 to 6) In every report run.. can you please check and let me know do we have any feasibility to achieve this.
    Thanks in advance.
    Regards,
    KAP.

    You can remove all other logic, like last page only contents (start@last-page:body), etc and section breaks if any you have inserted manually.
    Just have for-each@section logic.
    It would be difficult for me to guess what you have done without looking at your RTF or describing here.

  • I can't print Multiple pages in FF6 – clipping off content after page 1. I have thrown out firefox completely off my imac and re-installed... still does not print correctly. How do I fix this?

    After upgrading last week, i can no longer print multiple page print outs off of any website, without the secondary pages clipping off content. Page 1 prints fine... the remaining pages do not.
    pages print fine in both safari and chrome...

    If you are wondering why you are not getting any responses, it is because you have vented a complaint without any details that make any sense or give anyone something to work on.
    If you want help, I suggest actually detailing what has happened, with versions of software etc. Anything that would let us assist.
    As a start I am guessing that you have not really got the hang of "How it all works". Firstly download the Pages09_UserGuide.pdf from under the Help menu. Read that and view the Video Tutorials in the same place. A good addition would be the iWork 09 Missing manual book and something to help you learn how to use your Mac.
    If there are specific tasks you need help with:
    http://www.freeforum101.com/iworktipsntrick/index.php?mforum=iworktipsntrick
    Is a good resource.
    Peter

  • How do you get rid of white space when you are printing multiple pages to one sheet of paper?

    How do you get rid of extra white space when you are printing multiple pages to one sheet of paper?  When printing multiple pages to one sheet of paper Acrobat won't let you select the "zoom" for printing.
    Thanks

    Take a look at Quite Imposing.

  • How to print multiple copies on one page ?

    How to print multiple copies of one document on one page ?
    in coreldraw I used to make the document -for example a business card 5x9 - and when sending to print it automatically placed the number of cards that would fit in my A4 sheet.
    how do I make the same operation in Indesign.
    thanks

    Hi, Peter S.
    >I can see that as a shortcut to printing a page of different cards for multiple people, but to do a simple n-up of a single card it seems overly complex to me. What am I missing?
    * It's just an alternative to copy/paste and step/repeat.
    * For a one-time only use, perhaps it's a little more complex than necessary. But for any future needs, only the content of the data file needs to be changed, either by editing, or by pointing to a new data file. If different cards for multiple people becomes necessary, it's ready to go.
    Regards,
    Peter Gold
    KnowHow ProServices

  • How do I print multiple pages (2) to one A4 page?

    Hi folks,
    How do I print multiple pages (2) to one A4 page (as you can in a PDF) ?
    There is no option when I try to print & I have checked advanced etc. I have tried opening as a PDF. I have tried printing to PDF but it won't allow.
    Any ideas or suggestions would be greatly welcomed - I don't fancy printing the whole 188 pages, but I need them all!
    Thanks,

    Hi Chris,
    Try this, and if you have any trouble get back and we'll trouble shoot, but I think it will work for you.
    Open System Preferences.
    Select Print & Scan
    Click on your printer under Printers in the left pane
    Click "Open Print Queue", on the right
    The print queue app will appear on your Dock
    Open a Finder window containing your files to be printed and select them all
    Drag the files from Finder to Print Queue icon in Dock
    Regards,
    Jerry

Maybe you are looking for