HP print jobs print multiples

I am trying to troubleshoot this printing problem. Jobs sent to a shared HP 2200 laserjet (from an iMac running 10.4.x) print out in multiples of the user's requested number - e.g. if the user selects to print 2, the printer prints 4; if the use selects 3, the printer prints 9.
What is causing the exponential increase in the print request number? (2x2=4, 3x3=9)
I have deleted and reinstalled the HP drivers and associated ppds several times, with no improvement.
Before I reinstall the OS on this machine, does anyone have an insight into how the math for the print job is getting scrambled?
The Mac directly connected to the HP2200 (via USB) has no problems with print jobs.

Hi,
Please follow the link below :
http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&taskId=110&prodSeriesId=...
I work for HP but my posts and replies are my own.
Make it easier for other people to find solutions, by marking my answer with \'Accept as Solution\' if it solves your problem.
Click on the BLUE KUDOS button on the left to say "Thanks"

Similar Messages

  • How do you split the print job across multiple printers to shorten the prin

    i
    Can any one you provide some information on below questions.
    Check printing by XML template (XML Publisher).
    1. When printing checks, how do you print the checks from one printer tray and the overflow remittance pages from another printer tray?
    2. When printing a large batch of checks using XML and PDF output, how do you split the print job across multiple printers to shorten the print time?
    I appreciate if you could give some information on above 2 questions.
    Regards,
    Ramarao.

    Probably sould just do them individually.
    How to get all the iWork apps, iPhoto, and iMovie for free on an eligible iPhone or iPad
    http://www.imore.com/how-get-all-iwork-apps-iphoto-and-imovie-free-eligible-ipho ne-or-ipad
    About Free Apple Apps for iOS 7 compatible devices
    http://support.apple.com/kb/HT5913
     Cheers, Tom

  • Any way to get more than 100% zoom on print jobs when printing multiple pages?

    I know how to increase the size of a print job, when I am printing one page at a time. But when I go to print 2 pages at once (the multiple page print function), there are always large margins around the page. I'm ok with saving paper and printing up two pages, but it seems silly to see small print and wide blank margins. Is there any way to increase the print zoom, when printing multiple pages per sheet of paper?

    I once overshot the limit by marking too many photos to fit within 99 pages, but I could never figure out how to fool the application and had to give up trying to add those 14 extra photos.
    I asked a friend (who practically lives in Terminal) if he had any way of modifying that limit, but he reminded me that if their printing services are set up to bind books and bill for only 99 pages, fooling the application might be useless if the service only prints me a 99 page book and discards the additional pages.
    I can understand that you wouldn't want to let people print 1000 page books, but I sent feedback anyway to allow me to increase the limit. Anyone know of any service that lets you print beyond iPhoto's limits?

  • Business Inkjet 1200 will not print multiple page jobs

    Product Name: HP Business Inkjet 1200
    Product Model Number: C8154A
    Product Serial Number: TH49M1403W
    Service ID: 15148
    Firmware version: 20041001 MMR2016W
    Regulatory Model Number: SNPRC – 0401 – 01
    Date: Sept 22 2004
    HP Business Inkjet 1200, XP SP2, connected via Draytek 2710n router USB port will not print multiple page jobs.  Will only print 1 page pdf, <3 page word docs.
    Produces error - 'this document failed to print'
    Works fine printing multiple page jobs from other PCs on the network.  Other PCs are configured same.
    Configured to use TCP/IP port 192.168.1.1 (router/gateway IP), LPR, Queue "p1"
    HP Printer Diagnostic Utility shows no problems.
    Tried:
    Remove printer and drivers and reinstall.  Cleaned temp spools folder.  Checked amount of disk space, page file, ram. Reboot variously router, printer, PC. - No luck.
    Any response much appreciated, thanks in advance.

    I can't print my complete e- mail, only the first page. i have several pages of mail to print with all of the headers but am not able to do it on hotmail. it seems like i was able to do it before. it is import that all of these print because of current issues i am dealing with .
    Thanks, Ron

  • Can't get photoshop elements 12 to print multiple copies of an image with one print job? what to do?

    Can't get photoshop elements 12 to print multiple copies of an image with one print job

    How do I do that? I'm the only user on the laptop - I kind of assumed I already was running the install as the admin.

  • Print multiple forms between FP_JOB_OPEN and FP_JOB_CLOSE

    I am aware, that there are questions regarding "Printing Multiple forms", but I didn't find answers there.
    Still my system is not working as expected:
    1.  FP_JOB_OPEN is called
    2. the generated Adobe Forms function is called multiple times
    3.  FP_JOB_CLOSE is called
    This program doesn't deliver all the pages, but just the first call. How shall I solve this problem?
    (Coding should work anywhere with copy-pase.)
    data: fm_name           type rs38l_fnam,
          fp_docparams      type sfpdocparams,
          fp_outputparams   type sfpoutputparams.
    parameters: p_fpname type fpname default 'FP_TEST_02'.
    * Get the name of the generated function module
    call function 'FP_FUNCTION_MODULE_NAME'
      exporting
        i_name     = p_fpname
      importing
        e_funcname = fm_name.
    * Sets the output parameters and opens the spool job
    call function 'FP_JOB_OPEN'
      changing
        ie_outputparams = fp_outputparams
      exceptions
        cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4
        others          = 5.
    * Call the generated function module
    call function fm_name.
    * SECOND CALL ****************************
    call function fm_name.
    * Close the spool job
    call function 'FP_JOB_CLOSE'
    *    IMPORTING
    *     E_RESULT             =
      exceptions
        usage_error           = 1
        system_error          = 2
        internal_error        = 3
        others               = 4.

    Hi ZSOLT,
    In order to call the form multiple times please do the following,
    1) Just before your FP_JOB_OPEN you need to pass the output parameters (good practice). You can also set other parameters as well (for example nodialog, preview, copies., etc)
      CLEAR  fp_outputparams.
      fp_outputparams-dest = 'PDF1'.      "Default pdf printer
      fp_outputparams-reqnew = 'X'.       "New spool request
    Now call your FM FP_JOB_OPEN with the above output parameters.
    2) Usually this step is processed in a loop. (getting your interface data into a internal table and then looping at it)
    But here I am enhancing your example code.
    In order to trigger the form multiple times you need to change some input data to the form (for example I have changed date and time below in the prepare test data sections) so that the call function fm_name gets regenerated every time there is new data
    data  l_datatypes       type sfpdatatypes.
    prepare test data
      l_datatypes-char = '#'.
      l_datatypes-string = 'Auf geht''s! '.    "#EC NOTEXT
      l_datatypes-numc = '42'.
      l_datatypes-dec = 0 - ( 12345 / 7 ).
      l_datatypes-fltp = 0 - ( 12345 / 7 ).
      l_datatypes-int = 4711.
      l_datatypes-curr = 0 - ( 12345 / 7 ).
      l_datatypes-cuky = 'JPY'.       " no decimals
      l_datatypes-quan = 12345 / 7.
      l_datatypes-unit = 'DEG'.       " 1 decimal
      l_datatypes-date = '20040613'.      
      l_datatypes-time = '100600'.         
      l_datatypes-lang = sy-langu.
    FIRST CALL ****************************
    Call the generated function module
      CLEAR fp_docparams.
      fp_docparams-langu = 'EN'.       
      fp_docparams-country = 'US'.  
      call function fm_name
        exporting
          /1bcdwb/docparams        = fp_docparams
          datatypes                = l_datatypes
          mychar                   = l_datatypes-char
         mybyte                   =
          mystring                 = l_datatypes-string
         myxstring                =
          mydate                   = l_datatypes-date
          mytime                   = l_datatypes-time
          mynum                    = l_datatypes-numc
          myint                    = l_datatypes-int
          myfloat                  = l_datatypes-fltp
          mypacked                 = l_datatypes-dec
      IMPORTING
        /1BCDWB/FORMOUTPUT       =
    prepare test data
      l_datatypes-char = '#'.
      l_datatypes-string = 'Auf geht''s! '.    "#EC NOTEXT
      l_datatypes-numc = '42'.
      l_datatypes-dec = 0 - ( 12345 / 7 ).
      l_datatypes-fltp = 0 - ( 12345 / 7 ).
      l_datatypes-int = 4711.
      l_datatypes-curr = 0 - ( 12345 / 7 ).
      l_datatypes-cuky = 'JPY'.       " no decimals
      l_datatypes-quan = 12345 / 7.
      l_datatypes-unit = 'DEG'.       " 1 decimal
      l_datatypes-date = '20100913'.                 "You need to change your data in order it to trigger a new form with the new data.
      l_datatypes-time = '10700'.                        "You need to change your data in order it to trigger a new form with the new data.       
      l_datatypes-lang = sy-langu.
    SECOND CALL ****************************
    Call the generated function module
      CLEAR fp_docparams.
      fp_docparams-langu = 'EN'.
      fp_docparams-country = 'US'.
      call function fm_name
        exporting
          /1bcdwb/docparams        = fp_docparams
          datatypes                = l_datatypes
          mychar                   = l_datatypes-char
         mybyte                   =
          mystring                 = l_datatypes-string
         myxstring                =
          mydate                   = l_datatypes-date
          mytime                   = l_datatypes-time
          mynum                    = l_datatypes-numc
          myint                    = l_datatypes-int
          myfloat                  = l_datatypes-fltp
          mypacked                 = l_datatypes-dec
      IMPORTING
        /1BCDWB/FORMOUTPUT       =
    Close the spool job
    call function 'FP_JOB_CLOSE'
       IMPORTING
        E_RESULT             =
      exceptions
        usage_error           = 1
        system_error          = 2
        internal_error        = 3
        others               = 4.
    I have tested the above code and I am getting multiple forms.
    Please try on your end and let me know if it works.
    Thanks
    Raj

  • How do I use Address Book to print multiple labels using just one address?

    Hi. I'm trying to print multiple address labels using the same address on each label, but I'm stuck trying to make this happen in Address Book. Can anyone help?
    Thanks!

    The work-around that I've found to solve this issue is to create a new group in address book, then duplicate the contact 20 times or so, and drag the duplicates to the group you've created. Then, when you go to print, you will have a sheet of 20 or so duplicate labels. If you want to save it to repeat this task later, you can select "save as PDF" in the print menu, and simply print the PDF file next time. (assuming you use the same size labels next time, of course) Then, don't forget to delete the umteen duplicates from address book, taking care not to delete the original.
    Not the perfect solution, but it gets the job done. Maybe somebody wants to make an automator action that will do this?

  • How to print multiple mail forms in a single run?

    How can multiple, personalized letters be printed out from SAP CRM 7.0?
    Business requirement:
    When for example entrance tickets for a trade fair are sent to a group
    of customers, the accompanying letters are to be printed out of the CRM
    system.
    In SAP CRM 5.0 this was done by creating a marketing campaign, linking
    a target group & assigning a mail form to it.
    By selecting the communication medium "Printer" it was possible to
    print multiple letters in one run and send these documents by mail (not e-mail).
    The quantities of letters that have to be sent are too small to
    outsource the job to an external service provider (e.g. a printing house).
    In the latest version of SAP CRM the communication medium "Printer" is
    however no longer available in marketing campaigns.
    Does anyone know how this requirement can be met in SAP CRM 7.0?
    Thanks in advance for your reply,

    Thanks for your reaction.
    We considered working this way, but the idea was dropped because the quantities of letters that have to be sent are too large (several hundreds) & also because no follow-up of these activities is needed.

  • Can no longer print multiple files from a PDF package

    Prior to our upgrade to Acrobat Pro X, we had the ability to print multiple files within a PDF package.  We would simply select the files we wanted to print, say print and it would print them all.  It no longer does so, although it still allows us to select multiple files and to select ALL from the print menu but then it only sends the first file to the printer.
    We have tried it on both Windows XP and Windows 7 and it won't work correctly on either one.
    Does anyone have any ideas?  This is very frustrating as these packages are created by folks bundling their e-mail messages to send to the fileroom for printing and filing in the official case files.  With the old method we were able to quickly print out all the messages without attachments, and then would only have to individually print those messages that had attachments.  As stands now if we get a package with 100 messages in  it we will have to select and print each file individually instead of being able to print the 75 without attachments as one print job and then only have to do the seperate handling for the remaining 25 with attachments.
    Any and all suggestions are welcome.

    I'm using windows 7. The Acrobat that came with the Adobe Creative Suit 4 is Adobe Acrobat Pro. When I am on a web site that has a page in PDF I click on the printer icon and the print page comes up but the preview side is blank and will not print the page.

  • Laserjet 5000 with windows 7 driver cannot print multiple copies unless disabling mopier

    Customer has Laserjet 5000 that they have been using for approx 5 years. It is connected to one computer with the standard parallel cable and the driver is using lpt1. It is used mainly to print word documents and a multi page publisher document. The computer used to be a windows xp computer and all  worked  well with the PCL6 driver and that is the only driver that was used
     They just bought a new Windows 7 32 bit computer and now it has lost some of the functionality.
    The first driver that was loaded was the driver that Windows 7 used after you use the windows update button that you get during the add printer wizard. I think it was the pcl 5 driver as that is the driver that the computer will install if you remove the printer and then restart the computer. Using this driver, when you choose to print more than one page or multiple copies, it will just print the first page or copy and there will not be any errors displayed.
    I have since downloaded the PCL6 driver, PS driver and PCL5 driver from HP's website and tried all of them.
    The PS driver will print more than one page, but when it gets to about the 4th page the printer prints out an error page. The error is PCL XL error, Subsystem: Kernel, Error: Unsupported protocol, Operator 0x0, Position:0
    The PCl 6 driver will print the same error page and not print any print jobs, even if it is just a single page, single copy job.
    The pcl 5 driver prints one page and then stops printing, no errors.
    When I disable the mopier under device settings, the pcl5 driver will print everything just fine. Only problem is, it will not collate. The collate checkbox is available and checked when we try the multiple page multiple copy publisher document, but it just prints out as if we do not have collate checked. If we could get collation to work, than we are good to go.
    I have not tried the PS driver with the mopier disabled.
    The PCL6 driver stills returns the pcl xl error with the mopier disabled.
    The printer does not have any extra memory, just the 4 mb standard that came with the printer. I am wondering if this is a memory issue triggered by Windows 7and I just need to get more memory for the printer. (Computer has 4 gb of memory)
    Anybody else have a similar issue and got theirs fixed?
    Thanks in advance.

    Hi jnickelsen,
    I understand the printer won't print multiple copies.
    Thank you for your reply.
    I will be happy to help you with this.
    This printer doesn't have the Mopier settings.
    What drivers are you using?
    Did you download the drivers or are you using the Windows preinstalled drivers?
    If you are using the Windows preinstalled drivers then I would download the latest drivers. Here is the URL for the HP LaserJet Full Feature Software and Driver.
    I would download and run the Print and Scan Doctor since it might resolve the issue automatically.
    Find and Fix Common Printer Problems Using HP Diagnostic Tools for Windows.
    Hope this helps.
    Thank you for posting on the HP Forums. Have a great day!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • How do we print multiple components each in a different page?

    hello
    I would like to print multiple JPanels (lets say an array) each in a different page.
    The question I ask is about the following code
             printerJob.setPrintable(printTable.getInstance(), pageFormat);
                  try
                        if (printerJob.printDialog())
                             printerJob.print();
                        }

    Lets say that we have the following code. How do we modify it?
    * This example is from the book "Java Foundation Classes in a Nutshell".
    * Written by David Flanagan. Copyright (c) 1999 by O'Reilly & Associates. 
    * You may distribute this source code for non-commercial purposes only.
    * You may study, modify, and use this example for any purpose, as long as
    * this notice is retained.  Note that this example is provided "as is",
    * WITHOUT WARRANTY of any kind either expressed or implied.
    import java.awt.*;
    import java.awt.print.*;
    import java.io.*;
    import java.util.Vector;
    public class PageableText implements Pageable, Printable {
      // Constants for font name, size, style and line spacing
      public static String FONTFAMILY = "Monospaced";
      public static int FONTSIZE = 10;
      public static int FONTSTYLE = Font.PLAIN;
      public static float LINESPACEFACTOR = 1.1f;
      PageFormat format;   // The page size, margins, and orientation
      Vector lines;        // The text to be printed, broken into lines
      Font font;           // The font to print with
      int linespacing;     // How much space between lines
      int linesPerPage;    // How many lines fit on a page
      int numPages;        // How many pages required to print all lines
      int baseline = -1;   // The baseline position of the font.
      /** Create a PageableText object for a string of text */
      public PageableText(String text, PageFormat format) throws IOException {
        this(new StringReader(text), format);
      /** Create a PageableText object for a file of text */
      public PageableText(File file, PageFormat format) throws IOException {
        this(new FileReader(file), format);
      /** Create a PageableText object for a stream of text */
      public PageableText(Reader stream, PageFormat format) throws IOException {
        this.format = format;
        // First, read all the text, breaking it into lines.
        // This code ignores tabs, and does not wrap long lines.
        BufferedReader in = new BufferedReader(stream);
        lines = new Vector();
        String line;
        while((line = in.readLine()) != null)
          lines.addElement(line);
        // Create the font we will use, and compute spacing between lines
        font = new Font(FONTFAMILY, FONTSTYLE, FONTSIZE);
        linespacing = (int) (FONTSIZE * LINESPACEFACTOR);
        // Figure out how many lines per page, and how many pages
        linesPerPage = (int)Math.floor(format.getImageableHeight()/linespacing);
        numPages = (lines.size()-1)/linesPerPage + 1;
      // These are the methods of the Pageable interface.
      // Note that the getPrintable() method returns this object, which means
      // that this class must also implement the Printable interface.
      public int getNumberOfPages() { return numPages; }
      public PageFormat getPageFormat(int pagenum) { return format; }
      public Printable getPrintable(int pagenum) { return this; }
       * This is the print() method of the Printable interface.
       * It does most of the printing work.
      public int print(Graphics g, PageFormat format, int pagenum) {
        // Tell the PrinterJob if the page number is not a legal one.
        if ((pagenum < 0) | (pagenum >= numPages))
          return NO_SUCH_PAGE;
        // First time we're called, figure out the baseline for our font.
        // We couldn't do this earlier because we needed a Graphics object
        if (baseline == -1) {
          FontMetrics fm = g.getFontMetrics(font);
          baseline = fm.getAscent();
        // Clear the background to white.  This shouldn't be necessary, but is
        // required on some systems to workaround an implementation bug
        g.setColor(Color.white);
        g.fillRect((int)format.getImageableX(), (int)format.getImageableY(),
                   (int)format.getImageableWidth(),
                   (int)format.getImageableHeight());
        // Set the font and the color we will be drawing with.
        // Note that you cannot assume that black is the default color!
        g.setFont(font);
        g.setColor(Color.black);
        // Figure out which lines of text we will print on this page
        int startLine = pagenum * linesPerPage;
        int endLine = startLine + linesPerPage - 1;
        if (endLine >= lines.size())
          endLine = lines.size()-1;
        // Compute the position on the page of the first line.
        int x0 = (int) format.getImageableX();
        int y0 = (int) format.getImageableY() + baseline;
        // Loop through the lines, drawing them all to the page.
        for(int i=startLine; i <= endLine; i++) {
          // Get the line
          String line = (String)lines.elementAt(i);
          // Draw the line.
          // We use the integer version of drawString(), not the Java 2D
          // version that uses floating-point coordinates. A bug in early
          // Java2 implementations prevents the Java 2D version from working.
          if (line.length() > 0)
            g.drawString(line, x0, y0);
          // Move down the page for the next line.
          y0 += linespacing; 
        // Tell the PrinterJob that we successfully printed the page.
        return PAGE_EXISTS;
       * This is a test program that demonstrates the use of PageableText
      public static void main(String[] args) throws IOException, PrinterException {
        // Get the PrinterJob object that coordinates everything
        PrinterJob job = PrinterJob.getPrinterJob();
        // Get the default page format, then ask the user to customize it.
        PageFormat format = job.pageDialog(job.defaultPage());
        // Create PageableText object, and tell the PrinterJob about it
        job.setPageable(new PageableText(new File("file.txt"), format));
        // Ask the user to select a printer, etc., and if not canceled, print!
        if (job.printDialog())
             job.print();
    }thank you in advance

  • Printing multiple sets of Portfolio documents collated

    I use Adobe Acrobat 9 Pro's pdf Portfolio to print multiple documents with similar printing properties (two-sided, stapled, hole-punched) but they are separately two-sided and separately stapled. I try doing multiple copies but the print job comes out with 20 copies of document 1 of the porfolio followed by 20 copies of document 2 of the porfolio, and so on. How is it possible for me to make multiple sets of the portfolio which are by set rather than by document?

    I am also looking for an answer to this question.

  • Cannot print multiple pages

    I am unable print multiple pages after I upgraded Acrobat 8 Professional. Worked fine with Acrobat 7. I receive a pictwpstops stopped with status 1 message.
    G4 iMac
    1.5 GByte Ram
    Tiger with latest updates
    Adobe CS2 with latest updates and Acrobat 8
    Brother MFC-5840CN printer with MFC-5840CN CUPS v1.1 PDD / driver (latest available)
    I have removed my local fonts, reset printers, reinstalled printer/PDD files, repaired disk permissions to no avail.
    Why is this happening and how do I resolve this? This is our proofing printer.
    My CUPS debug output is given below.
    *** Job 1 ***
    D [04/Feb/2007:08:28:57 -0500] [Job 6] Error: /undefined in YDVGLJ+Times.New.Roman.Bold050*1
    D [04/Feb/2007:08:28:57 -0500] [Job 6] Operand stack:
    D [04/Feb/2007:08:28:57 -0500] [Job 6]
    D [04/Feb/2007:08:28:57 -0500] [Job 6] Execution stack:
    D [04/Feb/2007:08:28:57 -0500] [Job 6] %interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 1 3 %oparray_pop 1 3 %oparray_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval--
    D [04/Feb/2007:08:28:57 -0500] [Job 6] Dictionary stack:
    D [04/Feb/2007:08:28:57 -0500] [Job 6] --dict:1059/1123(ro)(G)-- --dict:1/20(G)-- --dict:83/200(L)-- --dict:120/174(L)-- --dict:54/73(L)-- --dict:212/315(L)-- --dict:72/107(L)-- --dict:0/10(G)-- --dict:0/10(L)-- --dict:2/50(G)-- --dict:56/71(L)--
    D [04/Feb/2007:08:28:57 -0500] [Job 6] Current allocation mode is local
    D [04/Feb/2007:08:28:57 -0500] [Job 6] Last OS error: 2
    D [04/Feb/2007:08:28:57 -0500] [Job 6] ESP Ghostscript 7.05.5: Unrecoverable error, exit code 1
    E [04/Feb/2007:08:28:58 -0500] PID 1268 stopped with status 1!
    E [04/Feb/2007:08:28:58 -0500] PID 1267 stopped with status 1!
    E [04/Feb/2007:08:28:58 -0500] [Job 6] error drawing page 2
    E [04/Feb/2007:08:28:58 -0500] [Job 6] pictwpstops - got an error disposing of document = -9783
    D [04/Feb/2007:08:28:58 -0500] [Job 6] ERROR during execution of pictwpstops. Error number -9783
    *** Job 2 ***
    D [04/Feb/2007:00:06:09 -0500] [Job 5] cups->header.Duplex = 0
    D [04/Feb/2007:00:06:09 -0500] [Job 5] cups->page = 2
    D [04/Feb/2007:00:06:09 -0500] [Job 5] cups->ppd = 0x1103b80
    D [04/Feb/2007:00:06:09 -0500] [Job 5] cups->ppd->flip_duplex = 0
    D [04/Feb/2007:00:06:09 -0500] [Job 5] width = 4950, height = 6450
    D [04/Feb/2007:00:06:09 -0500] [Job 5] PageSize = [ 612 792 ], HWResolution = [ 600 600 ]
    D [04/Feb/2007:00:06:09 -0500] [Job 5] HWMargins = [ 9.000 9.000 9.000 9.000 ]
    D [04/Feb/2007:00:06:09 -0500] [Job 5] matrix = [ 8.333 0.000 0.000 -8.333 -75.000 6525.000 ]
    D [04/Feb/2007:00:06:09 -0500] [Job 5] Contrast_Bright() pdev->dm.dmPrivate.epBrightness = 0
    D [04/Feb/2007:00:06:09 -0500] [Job 5] Contrast_Bright() pdev->dm.dmPrivate.epContrast = 0
    D [04/Feb/2007:00:06:09 -0500] [Job 5] Error: /undefined in YDVGLE+Helvetica-Bold
    D [04/Feb/2007:00:06:09 -0500] [Job 5] Operand stack:
    D [04/Feb/2007:00:06:09 -0500] [Job 5] false
    D [04/Feb/2007:00:06:09 -0500] [Job 5] Execution stack:
    D [04/Feb/2007:00:06:09 -0500] [Job 5] %interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 1 3 %oparray_pop 1 3 %oparray_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval--
    D [04/Feb/2007:00:06:09 -0500] [Job 5] Dictionary stack:
    D [04/Feb/2007:00:06:09 -0500] [Job 5] --dict:1059/1123(ro)(G)-- --dict:1/20(G)-- --dict:83/200(L)-- --dict:120/174(L)-- --dict:54/73(L)-- --dict:212/315(L)-- --dict:72/107(L)-- --dict:0/10(G)-- --dict:0/10(L)-- --dict:2/50(G)-- --dict:56/71(L)-- --dict:1059/1123(ro)(G)--
    D [04/Feb/20

    > a PDF/X-1a setting has fixed the problem
    I still have the problem with more simple kinds of PDF: 150 dpi, no PDFX. I can not print multiple pages.
    Furthermore I can not use the option
    "print screen view" (in german language), both affects the
    Reader 8 AND the Acrobat 8: it always only prints the first page of the document without any scaling.
    Finally I can not use the printer
    "Adobe PDF": it results in an endless spool action to that printer.
    Yesterday Acrobat 8 was deinstalled with the
    deinstaller. The
    new installation failed first because of a missing CD. The "AdobeExtendScriptToolkit2.0.1All.dmg" could fix the installation problem.
    After successfull re-installation neither before nor after the update to Acrobat 8.1.0 the printing errors mentioned above were solved.
    What can we try next?
    ===
    OSX 10.4.10., MacPro1.1, Dual-Core, Intel-Xeon
    Creative Suite CS2 and CS3
    ===
    Weird hint: None of our three older G4 (10.4.10, CS3+4, Acrobat 8.1.0) has this printing or any other Acrobat problem. - So, is it even hardware related??

  • Printing multiple pages on one sheet not working.

    Hey All,
    I'm reasonably new to the mac environment and am having trouble getting pages to print multiple flyers on a single sheet. I've set the flyer up in Page Setup for it's actual size which is 4 x5.5inches. I've created the flyer within this size sheet. When I select Print and choose 4 pages per sheet under layout options, nothing happens. The preview does not update and the printed doc (both pdf and on my deskjet only have one small image as opposed to 4. Any ideas as to what's going on?
    I've used this type of feature on many other applications so I think i have a good grasp as to how it's supposed to work but am prepared to be educated!
    thx!
    mister james

    have no idea about what is wrong on your machine.
    Here doing that I get a normal behavior:
    You may try:
    a - quit/close Numbers
    trash the preferences file:
    <bootVolume>:Users:<yourAccount>:Library:Preferences:com.apple.iWork.Numbers.pli st
    empty the trash
    restart Numbers.
    b - try to do the job from an other user account
    tell us how the beast behaves.
    Yvan KOENIG (from FRANCE samedi 31 mai 2008 14:47:07)

  • Can't "Print multiple files" or "Print bin files"

    I had PSE6 installed on my 'old' PC and never had any problems. Then I had my PC upgraded and now I can't print multiple files from the editor or organiser. The photos appear but have a red circle-like icon in the top-left of the thumbnail.
    I can print single photos from the editor. I have updated my printer driver with no change. The printer works fine from other applications.
    I know this is possibly not a PSE6 problem, but would appreciate any light that can be shed on fixing this problem.
    I am running on XP Pro (was on SP2 before but new system has been installed with SP3)
    Thanks in advance.
    Leonie

    Barbara,
    Thanks for replying! I am using a Mac (OS 10.5 and Photoshop Elements 6)
    I went to one of Adobe's help pages and tried to follow the instructions below so that I could print multiple photos on one sheet. However, I cannot find any "Organizer" or "Editor Print" dialog box in my Photoshop Elements software. Plus, I do not know what "Photo Browser" or "Date view" are. And the "Remove" button does not seem to be available.
    The guide appears to be of no help, and I am currently lost. Are the directions below not for a Mac? Is there a book I should buy for Mac?
    Bruce
    Print multiple photos
    You can print multiple photos using the Print dialog box in the Organizer. You can access this dialog box from the Editor Print dialog box.
    1. Do one of the following to open the Print Selected Photos or Print Photos dialog box:
    In the Photo Browser or Date view, select one or more photos, and choose File > Print.
    In Full Edit, Quick Fix, Guided Edit, or any other workspace mode, open the photos you want to print and choose File > Print Multiple Photos.
    2. To add more photos, click the Add button .
    3. To remove a photo from the print list, select its thumbnail and click the Remove button .
    4. Choose Individual Prints from the Select Type Of Print menu.
    5. Choose a print size for each photo from the Select Print Size And Options menu. Click the forward and back buttons to see each page of the print job.

  • Query regarding Printing multiple documents

    Hi,
    We would like to know how we can print multiple documents at once not one by one in SAP.
    Presently we are using FB03 to print the GL document one by one.
    Thanks
    Pooja Gupta
    SAP FICO Consultant

    HI,
    We also encountered with the same problem and now we are using HP solution for it.
    There are four major problems with the SAP print spool process:
    1. Limited bidirectional communication between the SAP environment and the underlying operating
    system (UNIX, Linux, and related systems). After the file transfer to the host, the only information
    that passes between the two environments is whether the file still remains in the print queue (if the
    SAP environment is configured to enable polling).
    If the file is no longer present in the host’s print queue, the SAP environment assumes that the file
    has printed. If the file disappeared for any other reason, such as a reboot of the operating system
    or if the printer is turned off, the assumption is not correct. SAP proceeds to process the next
    output request and the file simply disappears, leaving no trace of the failure.
    Most often, SAP sets the status flag to ‘complete’ after transferring the request to the host spool
    system. This action is a false positive because it actually indicates the handoff is complete, but not
    that the job is printed. It aggravates users and increases calls to the helpdesk.
    2. The lpr command passes only very specific instructions to the host spooler. The host only attempts
    to deliver the file to the specified printer; it does not wait for the printer to confirm that the last
    pages printed. It does not perform transformations, repackage the data, or redirect the file to
    another printer. Nor does the host track the file and keep a record of what happens. The lpr
    command (in some of the UNIX-related distributions) does allow an option to send an e-mail at
    completion of a print job, but this option can quickly clog up the e-mail system and is rarely used.
    3. Users have to make all adjustments to data within SAP before initiating the print request using the
    capabilities already programmed into the SAP environment. This limitation includes advanced
    print features such as staple, duplex, and resize, although administrators can enable the SAP
    spool work process to handle these types of functionality by creating a new print driver. Further
    extensions require additional programming within the environment.
    4. A relatively inflexible and unfriendly input process can cost money and slow business processes.
    For example, reports often need to go to people in different offices or at different sites. Users must
    create multiple output requests in order to send the documents to multiple destinations, or users
    must send the report to a print center where someone (extra headcount) collects the multiple
    copies and mails them to the recipients (extra mailing costs and extra time). Sending reports by
    fax or e-mail require a different set of steps, which further burdens the user.
    Regards,
    Satish Muvva.

Maybe you are looking for

  • HOWTO remove an entry from the node list...

    Hi all, does anybody know, howto remove an entry from the node list TAB ? I recentyl updated my system to 11.5.10.2 including enabling autoconfig. Now, concurrent processes won't start, because of two entries in the node list tab (yes, it's a single

  • Exiting the form when a text item has focus

    I am a beginner, beginner using developer/2000. I made a form with some text items that are linked to the database. When one of the text items has focus and I click the push button that i created to exit the form, I get the message FIELD MUST BE ENTE

  • Making Finder display 'hidden' files i.e. dot-files

    Is it possible to have Finder display (hidden) dot-files? (This used to be possible via a Preference in 'Step so one wonders why the OS X people actually eliminated this extremely useful feature.) If you have to go to the Terminal and do cp and mv, i

  • TS3147 My HP printers will not print in color.

    My MacBook will not print in color either with my old HP 6122 or my HPEnvy 120.  Any solutions?

  • ITunes sync issue

    I'm making a playlist just for the iPhone, and it's only taking some of the songs and putting them on the phone, not all. I'm not even close to using all 8G of memory, so it's not that. I've tried a hard reset, and that didn't work. It'll say it's sy