How to print Indesign 1 built 20 pg. doc. using Indesign 4, saddle stitch on color copier????

I have a document built in the first version of Indesign. We have two Macs (OS 10.4.11).  My employer purchased a Sharp/COECO brand 6200 color copier/printer (a big boy!).
The #1 criteria for purchasing that equip. was that it had to successfully print our annual president's report. (After Sharp delivered the copier/printer, things went down hill starting with day one. Bad motherboard in machine; got new motherboard. Output quality shifted causing uneven margins on large posters (11x17) went sent directly from the Macintosh and it gets worse.) Long story short, our Sharp folks said it was because we were operating with Indesign 1 that the features for creating a saddle-stitch job appear grayed out (selections are shown, but we could not select them). Just last week we purchased Indesign 4. Installed it. Tried the very same steps as we tried with Indesign 1. Areas to select to create a booklet using saddle-stitch feature are still grayed out.
Document information: 20 page, single-page built 8.5 x 11 document (built using Indesign 1).
Cover Paper (for pages 1 & 20 and 2 & 19) : 80# Futura Laser Dull
Content Paper (for pages 3-18) : 80# Futura Laser Text
We want 700 copies of a 20 pg. document. We were instructed by our copier tech/specialist to print the covers separate (since they were to be a different weight paper). So I created an 11 x 17 horizontal layout to place my already built 8.5 x 11 single pages into so they would be printer spreads (the only way I knew to do it). Pages 20 & 1 were side one; pages 2 & 19 were side two. I printed one side first, then the other, as our copier will not duplex automatically.
The theory from our copier tech was that we would load the covers into the by-pass tray and those would pull (to be added to the content pages to be saddle stitched) once I sent the pages 3-18 (still in a single page format) from my mac to the new copier/printer. The software from my mac would "talk" to the software on the copier/printer and the copier/printer would know to impose, place my letter-sized pages into printer spreads. Made sense to me.
When we attempted to do all of the above, options that I needed to select for making it into a booklet, saddle-stitched, etc. were grayed out. After countless suggestions (with no solutions ) from our copier tech., they quickly washed their hands of the situation and stated that it was not their product but an issue with our mac. End of story.
We have 700 covers already pre-printed (containing pages 20 & 1, 2 & 19).  I need to know if there is anyone out there who might have had a similar issue when trying to create a saddle stitched book, designed in Indesign 1, printed in Indesign 4 on a copier/printer that supposedly can do such as mentioned??If so, i need and appreciate all help, feedback, suggestions, recommendations as soon as possible. This job must be ready by Monday, Nov. 16, 2009.
Our only other option at this time is to set pages 3-18 up as printer spreads, print them on the 80# Futura Dull Text paper (will yield me 4 printer spreads) and pair those with the first printer spread (20 & 1 and 2 & 19), which will then be a total of 5 printer spreads and carry it to a local printer who will graciously collate, fold, and saddle stitch for only $85.
Please help and many, many thanks for all who can assist! I certainly appreciate it!

Daniel,
Thank you SO MUCH for your options and quick reply to my post! I'm nearly at my wits end ... our Command Workstation is also loaded on the only PC in my department. When you said it could be printed using Acrobat, I guess you mean just the plain old, basic Adobe Acrobat that one would use to open PDFs in? I'll give that a try first. If I've misunderstood you, please don't be afraid to correct me .... again, thanks!
Beth Gray
>>> Daniel Flavin <[email protected]> 11/04/09 5:58 PM >>>
Several options come to mind -
The copier engine and RIP are in charge of the imposition and duplexing from your single page file and should be available from any program ie: Word, Open Office, Acrobat. Could you print a 8 page file from any other program and have the features available?
Your support points the finger at the MAC drivers; do you have a PC in the facility to check the imposition and duplexing ability?
The job could be printed from Acrobat as easily as from InDesign if drivers are to blame.
Is the Sharp accesible/driven by a stand alone program ie: Command Workstation? You would be able to spool the page file and make the options from there.
FYI, 2 things you can expect and should check with from your local printer about the booklet making - A decent shop will score the covers before the gather, stitch and fold yeilding a nicer crease (no cracking along the spine). (I'm assuming your 80# Futura Dull is a cover weight as opposed to text weight.) Also, you should be getting a face trim to eliminate the creep from the inside pages - a clean polished outer edge. You Sharp can do neither and it is your annual report.

Similar Messages

  • How to print a HTML file in browser look using DocPrintJob

    Hello guys,
    Does anyone know how to print HTML output/file into browser look?
    I'm using DocPrintJob and the DocFlavor set to DocFlavor.INPUT_STREAM.AUTOSENSE.
    posted below is my code :
    public class BasicPrint {
        public static void main(String[] args) {
            try {
                // Open the image file
                String testData = "C:/new_page_1.html";
                InputStream is = new BufferedInputStream(new FileInputStream(testData));
                DocFlavor flavor =  DocFlavor.INPUT_STREAM.AUTOSENSE;
                // Find the default service
                PrintService service = PrintServiceLookup.lookupDefaultPrintService();
                System.out.println(service);
                // Create the print job
                DocPrintJob job = service.createPrintJob();
                Doc doc= new SimpleDoc(is, flavor, null);
                // Monitor print job events; for the implementation of PrintJobWatcher,
                // see e702 Determining When a Print Job Has Finished
                PrintJobWatcher pjDone = new PrintJobWatcher(job);
                // Print it
                job.print(doc, null);
                // Wait for the print job to be done
                pjDone.waitForDone();
                // It is now safe to close the input stream
                is.close();
            } catch (PrintException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
        static class PrintJobWatcher {
            // true iff it is safe to close the print job's input stream
            boolean done = false;
            PrintJobWatcher(DocPrintJob job) {
                // Add a listener to the print job
                job.addPrintJobListener(new PrintJobAdapter() {
                    public void printJobCanceled(PrintJobEvent pje) {
                        allDone();
                    public void printJobCompleted(PrintJobEvent pje) {
                        allDone();
                    public void printJobFailed(PrintJobEvent pje) {
                        allDone();
                    public void printJobNoMoreEvents(PrintJobEvent pje) {
                        allDone();
                    void allDone() {
                        synchronized (PrintJobWatcher.this) {
                            done = true;
                            PrintJobWatcher.this.notify();
            public synchronized void waitForDone() {
                try {
                    while (!done) {
                        wait();
                } catch (InterruptedException e) {
    }the printed ouput for this code will be look like this
    <html>
    <body>
    <div style="page-break-after:'always';
                background-color:#EEEEEE;
                width:400;
                height:70">
         testPrint</div>
    ABCDEFGHIJK<p>
     </p>
    </body>
    </html>however, the output that i want is the HTML in browser look not HTML code itself.
    i've tried to change the DocFlavor into any TEXT_HTML type but it gives error:
    sun.print.PrintJobFlavorException: invalid flavor if you guys has any idea or solution, can you share with me... already search in Google but still not found any solution
    Thanks in advanced.

    hi,
    do the following
    URL url = null;
    try
         url = new URL("http://www.xyz.com");
    catch (MalformedURLException e)
          System.out.println("URL not correct " + e.toString());
    if (url != null)
           getAppletContext().showDocument(url,"_blank"); //shows the page in a new unnamed top level browser instance.
    }hope that helpz
    cheerz
    ynkrish

  • How to print a report on crystal report server using webservice call

    Hi,
    I'm looking for web service api calls that help print a report on the crystal report server. Can someone post a snippet of how this is done.
    Thanks,

    Below is a snippet that uses the BusinessObjects Enterprise XI Release 2 version of the BIPlatform Web Services Java Consumer API:
    Sincerely,
    Ted Ueda
    /* Printer name */
    String printerName = "\\\\van-s-prt01\\VAN-P-BEAVERCREEK";
    /* URL to Enterprise Web Services */
    String servicesURL = "http://localhost:8080/dswsbobje/services";
    Session ceSession = null;
    Connection ceConnection = new Connection(new URL(servicesURL + "/session"));
    EnterpriseCredential ceCredential = new EnterpriseCredential();
    ceCredential.setDomain(cmsname);
    ceCredential.setAuthType(authType);
    ceCredential.setLogin(username);
    ceCredential.setPassword(password);
    try {
         ceSession = new Session(ceConnection);
         ceSession.login(ceCredential);
         ceConnection.setURL(new URL(servicesURL + "/biplatform"));
         BIPlatform bip = new BIPlatform(ceConnection, ceSession.getConnectionState());
         GetOptions getOpts =new GetOptions();
         getOpts.setIncludeSecurity(Boolean.FALSE);
         ResponseHolder rh = bip.get(reportPath, getOpts);
         InfoObjects infoObjects = rh.getInfoObjects();
         CrystalReport report = (CrystalReport) infoObjects.getInfoObject(0);
         ReportProcessingInfo processing = report.getPluginProcessingInterface();
        CrystalReportPrinterOptions printerOptions = processing.getReportPrinterOptions();
        printerOptions.setEnabled(Boolean.TRUE);
        printerOptions.setPrinterName(printerName);
         report.setSchedulingInfo(new SchedulingInfo());
         report.getSchedulingInfo().setRightNow(Boolean.TRUE);
         bip.schedule(infoObjects);
    } finally {
         if(ceSession != null)
              ceSession.logout();

  • How to print both letter and legal size docs at same time with two trays

    I have an HP Laser Jet P2055dn printer. How can I print both letter and legal docs at same time?

    Not quite sure what you mean by "print both letter and legal docs at same time".
    If you mean that sometimes you want to print a document on Letter size paper, and at other times you want to print a different document on Legal sized paper, then all that is neccessary is to ensure that:
    The printer knows what Paper Size (e.g. Letter or Legal) is present in each tray; on many LaserJet devices, the size is detected automaticaly by sensors in each tray (except for the drop-down tray), but some devices may require that you set the size via front panel menus, or (for network models) via the Embedded Web Server equivalent.
    You may also need to specify what Paper Type (e.g. Plain or Letterhead) is present in each tray, in order to distinguish between two or more trays which have the same paper size loaded.
    Within your appllcation / print preferences, ensure that you select the required combination of size and type for the document.
    But if you mean how do you print a document with some pages on one size of paper, and other pages on a different size, this may only be possible with bespoke applications and/or printer drivers.

  • How to print from my IPad 2 can I use my MG6120 printer?

    How do I print from my Ipad2 from my canon MG 6120?

    If you have an AirPrint enabled printer then you don't need any additional apps : AirPrint. If your printer isn't AirPrint enabled then you could see if the manufacturer has their own app in the iTunes app store, otherwise there are third-party apps such as Print Central For iPad and Print n Share which might work with it

  • How to print a PDF document in duplex mode using command prompt?

    I want to print a pdf document in DUPLEX mode by command prompt.Already tried with /p and /t.

    Hello Ram,
    Please see this link - http://www.coolutils.com/Print-PDF-duplex-cmd
    ~Deepak

  • How to print on Android from my app without using Internet Cloud Service

    Hello, I am developing Android applcation where files are being sent to a LaserJet Pro Printer via
    Intent  "org.androidprinting.intent.action.PRINT " and the ePrint Cloud service. And it works  fine for txt and pdf files.
    My question is, is it possible, to print directly to the printer without the cloud service? This is needed in cases when internet connection is not available.
    Regards,
    Stoian

    Hello Stoian,
    Yes, some HP printers have a print option called WiFi Direct. This printing path creates a WiFi connection between the printer and mobile device.  I believe this configuration supports up to 5 connections.
    Miles
    HP Employee

  • How can I shut off built in camera and use another one?

    I'm trying to use one of Apple's older auxillary cameras to shoot auditions.People will sit on the other side of my computer.
    I plug it into my Imac, but the system doesn't recognize it and I continue to see only
    myself. How can I turn the other camera on?

    harryfromrichardson wrote:
    ...the system doesn't recognize it ...
    How can I turn the other camera on?
    With the external (Firewire) iSight connected, (do not chain external iSight with other Firewire devices) if your  > System Profiler > Hardware > Firewire does not recognize the external iSight, use the suggestions here to test whether your old iSight is still functional:
    http://www.ralphjohns.co.uk/EZJim/EZJimpage4.html
    Once your system recognizes both cameras, be sure to rotate the ring at the front lens cover of the external iSight clockwise to turn it on and open the lens shutter.
    With more than one working camera recognized by your system, most camera-capable applications have settings that allow you to choose which camera to use. However, they do not all work the same way.  For example:
    • iMovie 9 ('11) uses a choices bar in the "Import from Camera" window:
    More info: http://docs.info.apple.com/article.html?path=iMovie/9.0/en/mov39f84285.html
    • For iChat, you can choose which iSight you use in the "Camera:" choices bar in iChat > Preferences... > Audio/Video that appears when more than one compatible camera is connected. Although your camera choices will be different, the choices bar will look something similar to the Preferences settings shown here:
    • Photo Booth uses the Photo Booth > Camera menu command to select which camera to use.  Remember, camera choice for any app will be available only if more than one working camera is recognized by your system.  With only one camera, the choices will not be visible.
    • For FaceTime,if your Mac recognizes more than one connected compatible camera, a "Camera" section listing the cameras from which you can choose will appear there. Clicking on the desired camera name will let you select the one you want as shown in this image from my Mac Pro and LED Cinema Display:
    If your Mac recognizes only one compatible camera, the "Camera" section will not appear in the Video menu, but FaceTime will automatically use the connected camera that is recognized by OS X.
    • QuickTimeX uses Preferences to select between connected cameras.
    QTX video Preference settings are visible only when you have a new video recording window open. The image below shows how to access QTX video Preferences from an open video recording window:
    Note that only one webcam (iSight) is shown in this image because I had only one camera connected to my Mac at the time. When more than one compatible camera is connected, you will see the additional camera name and can select it in this menu.
    •  For cameras connected via Flash browser plugins, control-click on an open video window and adjust the camera settings to select between a connected USB and Firewire video camera:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/help04.html
    • For other apps, check the app's menu items or Help to find out how to select between connected cameras.

  • How to print the data in ALV list  format using an existing layout

    Hi all
    Iam displaying the output in ALV list format and I saved the layout with some name
    now my requirement is i have to provide a field to select the layout name with F4 help and if i execute the program it should show the output with that layout format
    I tried this iam getting F4 help for that layout and selecting the layout but iam not getting the output with that layout iam getting the normal basic layout
    Can anyone send me a sample program code or what to do to get that
    Thank you

    Hi,
    refer this code.
    DATA : wa_variant  TYPE disvariant,       "Work area for variant
           wa_variant1 TYPE disvariant,       "Work area for variant
           wa_layout   TYPE slis_layout_alv,  "Work area for layout
    *&      Form  sub_get_default_variant                                  *
    This form will initialize the variant                               *
    FORM sub_get_default_variant .
    *--Clear
      CLEAR wa_variant.
    *--Pass the report name
      v_repid = sy-repid.                     "Report ID
      wa_variant-report = v_repid.
    *--Call the function module to get the default variant
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save        = c_save
        CHANGING
          cs_variant    = wa_variant1
        EXCEPTIONS
          wrong_input   = 1
          not_found     = 2
          program_error = 3
          OTHERS        = 4.
    *--Check Subrc
      IF sy-subrc = 0.
        p_varnt = wa_variant-variant.
      ENDIF.
    ENDFORM.                                  "sub_get_default_variant
    *&      Form  sub_f4_for_variant                                       *
    This form will display the List of Variants                         *
    FORM sub_f4_for_variant .
    *--Local Variables
      DATA: lv_exit(1) TYPE c.                "ALV exit
    *--Call the function module to display the list of Variants
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
        EXPORTING
          is_variant    = wa_variant
          i_save        = c_save
        IMPORTING
          e_exit        = lv_exit
          es_variant    = wa_variant1
        EXCEPTIONS
          not_found     = 1
          program_error = 2.
    *--Check Subrc
      IF sy-subrc <> 2 AND lv_exit IS INITIAL.
        p_varnt = wa_variant1-variant.
      ENDIF.
    ENDFORM.                                  "sub_f4_for_variant
    *&      Form  sub_check_variant                                        *
    This form will check the variant                                    *
    FORM sub_check_variant .
      IF NOT p_varnt IS INITIAL.
        CLEAR wa_variant1.
        MOVE wa_variant TO wa_variant1.
        MOVE p_varnt TO wa_variant1-variant.
    *--Call the function module to check the variant exist
        CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE'
          EXPORTING
            i_save     = c_save
          CHANGING
            cs_variant = wa_variant1.
        wa_variant = wa_variant1.
      ENDIF.
    ENDFORM.                                  "sub_check_variant
    Regards,
    Prashant

  • How to print the superscript in smartform

    Hi gurus,
    Please tell me the procedure how to print the superscript in middle of the text displaying?
    when we are displaying the smartform its converted to some special character like & .
    please let me know procedure at the earliest
    Regards
    Raj

    Hi thanks for ur patience.
    see my requirment was to print TM as superscript for HLL ,already smartstyle is there, and also a character format with superscript is also defined.
    then aftet HLL how it prints as superscript.
    for HLL we are using another character format and for superscript we are using the another character format.
    If posiible send me the code to write in smartforms
    Regards
    RAj
    Points are awarded for useful answers.

  • How to print the texts retrived by using READ_TEXT fun module in Smartform

    Please tell me how to print the text which is rertrived by using the READ_TEXT function module in smartform.
    I have coded all things in the program lines and in that i am retriveing the long texts.
    I am getting the text lines in my internal table clearly, the thing is that I am not able to pass these lines to the text.
    I have to print the trouble ticket. in that the notes log I have to pass.
    its urgent. Points will be rewarded for any type of clue. whether it will work or not.

    There are a few ways to do it. If you need to take all of the text in the text type, in your SF text element choose "Include Text".
    Populate the fields with the data that corresponds to the text type. It is similar to the interface to the FM "Read_Text.
    Text Name
    Text Obje
    Text ID 
    Language
    Encase any variables with the "&" symbol.
    If you have already coded the call to the FM "READ_TEXT" and loaded the text into an internal table, create a loop and loop through the itab. Inside of the loop create a text element and add a variable in the text element for the field you are looking to output.

  • How to print text rertrived by using the READ_TEXT fun module in smartform

    Please tell me how to print the text which is rertrived by using the READ_TEXT function module in smartform.
    I have coded all things in the program lines and in that i am retriveing the long texts.
    I am getting the text lines in my internal table clearly, the thing is that I am not able to pass these lines to the text module.
    its urgent. Points will be rewarded for any type of clue. whether it will work or not.

    loop the table into which u have retrieved the text .
    in the form interface of the smartform ... in importing parameter give the that table name .
    and in smartform whereever u want to print there insert the data into work area and pass to fields for dispaly .
    decalre ur work area in global defintions
    thnaks .

  • How to print envelopes in pages, How to print envelopes in pages

    How to print envelopes in pages, How to print envelopes in pages

    I presume you are using the Pages application, is that correct?
    So start off by launching Pages and choose one of the regular envelope styles. Traditional works well for me.
    Next go to the File menu and select Page setup. From the menu that says Paper Size select Manage Custom Sizes. In the resulting dialog, there should be a button on the left labeled "+". Click it. In the Paper Size area, select Width 5 in and Height 7 in. Name the size (where it says "untitled" something descriptive like "5 x 7 envelope". Click the OK button. The Paper Size menu here should now say the description you gave it. Click OK again. Your work area should now be a 5 x 7 envelope.
    Best of luck.
    PS If you are using Word or some other program, the process is probably the same or very similar.

  • How to print the output of the screen in Dialog Programming

    Hi,
    Could anybody help how to print the output of a screen in the dialog programming. i can select 'Hard Copy' option in the 'Custumizing of Local Layout' Icon in the standard tool bar. but that prints the whole screen with the toolbar. i want to print only the output which is displayed on the screen. Please help..
    Regards,
    Swathi

    Hi Swathi,
        Ok. Do One thing. Go to menu bar and select Systems -> Own pool Request -> here you get the spool number. Select it and select the option "Print Directly" in tool bar.
    Thanks.

  • How to PRINT a CD booklet in Indesign CS 5?

    I think it's alittle funny that our professor at my 4yr college is teaching us how to make a CD booklet in Indesign using Masterpages and yet he doesn't know how to print it out.
    Well I'm having trouble printing mine out. I'm making a CD booklet for a singer I like and put lyrics/backgrounds on each document.
    But, since there is two columns on one page, i made the same background stretched across, so that each page/document had a theme. My teacher said this had something to do with pagination and he didn't know how to print it out.
    this is how the pages are setup in indesign masterpages:
    1 (this is the cover)
    2-3
    4-5
    6-7
    8-9
    10-11
    12-13
    14-15
    16-17
    18 (this is the back cover)
    So whenever i print them out the pictures are not matching up right, to where if i folded each page, each page is not matching the theme.
    So here are some screenshots, I'm turning this in next week, and would really appreciate help on the printing parts!! Also, when they print out they are printing upside down i dont know how to fix this.
    and this was taken with my phone, see the images dont match up right, and also want them to be not backwards on the back. I am printing these double sided pages!
    please help thank you as this is also a learning process fot me!

    There's a problem, I think, with Petteri's solution, and that's that he's got all the extra pages to the right of the spine.  When you do island spreads you have to be sure that you have some sort of symmetry so the pages will back up properly, whether in this case you have all the spreads with two pages on either side of the spine, or if you alternate sides with the ones and threes.
    But I can see now why your instructor said he didn't know how you would print this. you want 4 pages together (or two double-width pages, which would be another way to set it up). That combined width is bigger than any sheet of paper that is likely to run in your printers without tiling and pasting the pages together at some point. It would be no problem on a press, but you aren't going to run one booklet on a press. If your printers can handle 13 x 19 sheets you might be able to find a printer willing to cut you some from a lerger sheet, or you might be able to find a ream someplace, but it will be expensive and you might not get the stock you want, and even on that size sheet I'm afraid you'd have clipping on the outer left and right ends where you run into the non-printing area on the edge of the sheet. The other option would be to run on a wide-format inkjet plotter.
    Ask your professor if you can print this at reduced size as a proof of concept and you may be able to output on equipment that is available to you at school.
    But that brings us back to the problem of page count. Your example has 12 panels, not 18. If you want to have a 4-panel spread like this, you need to be working in multiples of 8 panels for your design -- 4 panels on each side of the sheet. You can leave some blank if you want to, but you need to conscioulsly put those blanks where you want them.

Maybe you are looking for

  • Errors encountered while using a Custom Security Realm on a Platform Domain

    Hi, We have created a WebLogic Platform Domain. A WebLogic Portal application(Portal 7.0) and some Web Service apps are running on this domain. We have created a Custom Security Realm b'cos of our application requirements and now when I startup the P

  • Upgrade Siebel Analytics 7.8.2 RPD to BI Applications 7.9.6.1 RPD

    We are upgrading from Siebel Analytics 7.8.2 version to BI Applications 7.9.6.1 version. The Siebel Analytics RPD is customized and having custom catalogs which are based on Pharma tables and the Core model is not at all customized. So, I have follow

  • HomeHub 5 and WiFi

    I've noticed that the HH5 still configures the wifi, even if it is disabled. 23:18:09, 01 Feb. (421637.500000) WiFi auto selected channel 1 23:18:09, 01 Feb. (421637.500000) 1-104::2-105::3-105::4-104::5-106::6-106::7-106::8-106::9-106 23:18:07, 01 F

  • HT4314 Why wont apple let you disable or unregister from gamecenter!? why?

    Why wont apple let you disable or unregister from gamecenter?! Iv done everything I can but games log into it reactivated its notifications aswell. It auto logs me back in...I want apple to let you unregister completely why not?? I have disabled all

  • RV45PFZA: Limiting Code

    Hi, In Include RV45PFZA, there is a user exit USEREXIT_SET_STATUS_VBUK. I want to enter code there that that will only be hit for Transaction VA01. This user exit is also hit for Transaction VKM3. Syst-tcode will work, but I was warned off it as when