I need help printing.

I'm trying to print and error message says, " There is a problem with Adobe Acrobat/Reader.  If it is running, please exit and try again. (0:104)."  I have the Reader XI (11.0.04) version and computer says that's the latest update.  Why can't I print??

You could print it as a poster; scale it to a percentage until you get the size you want.

Similar Messages

  • Need helping printing to networked printers.

    I need help setting up network printers that have a code on them for each individual. There is no place to put a code so the printer will know who is printing what. I have installed 3 printers and they will not print, they just go to a paused mode and when you hit resume in reverts back to pause because it is looking for a code. I have tried it another way but it asks for a user name and password and all we have are codes. The workplace is using a windows based server and the copiers are listed as followed.
    Konica biz hub c450
    Sharp ar m700n
    sharp mx700n
    I need help to be able to print from my mac. I also have parallels running with xp installed and all the printers are installed on that side and printing fine. Hopefully someone can help me out.
    Thanks in advance

    Hello and welcome to Apple Discussions.
    In order to provide the user with the ability to input a user code, the respective printer driver would have to provide the facility. If this feature did exist on a previous version of OS X, then you may have to check the vendors web site to see if there is a driver for 10.6.
    If you are not sure if the function was supported previously, then go through all the user menus for the driver. The function may be present but located in an unusual location. Or it could require an additional file (aka plugin) that could be missing from the driver installation or not compatible with 10.6.
    The other thing to note is that if you have the Mac's printing via a Windows queue, you will have to provide user credentials for SMB print queues. This is typically a Windows user account - not the Mac's account details. If you don't want to create accounts for the Mac users on the Windows server, then you can use LPD rather than SMB to connect to the Windows queues. This does require UNIX Printing Services to be enabled on the server.
    Pahu

  • I need help printing with HP laserjet 2200 and OS 10.6

    I need help setting up my HP laserjet 2200 and OS 10.6 -- I've downloaded and installed all the software and still can't print.

    Hey jeo1951,
    If you haven't already, try running through the recommended steps in the following article:
    Mac 101: Printing (Mac OS X v10.6)
    http://support.apple.com/kb/HT3771
    It should help you set up your printer.
    Welcome to Apple Support Communities!
    All the best,
    Delgadoh

  • Need Help Printing Text Messages From E71

    I need to print some saved text messages that are on my e71 but cannot ge **bleep** to hook up to my bluetooth printer it just never finds it. Is there another way to print these messages fromt he phone i really need them

    connect to pc and use ovi suite
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Need help printing tiff files

    I have written some code that prints any file that can be opened using JAI and the ImageIO Tools. The code works good for me but I have some special cases where I am having some difficulty. Some files I need to print are TIFF files with many pages. Some are compressed using Fax Group 4 encoding and others are compressed using OLD jpeg-in-tiff. I can read and print the files just fine, but it takes about 2 seconds to print each page. Also the spooling data for 88 pages is 900 MB in size. Printing the same files using IrfanView takes <1 seconds and the spool file is much smaller (equivalent to the size of the uncompressed tiff) The speed and size issues are problems for me because I am working on a print web service. My code to render each page is below. So far I have tried rendering hints and such to increase speed, but I think the problem is that when I read the image it takes up a lot of space in memory.
    Here is the overall requirements for what I am doing: A use will request that the server print a set of files (mixed image formats, restricted to TIFF, JPEG, and GIF) be printed to specific printer as a single print job. They can specify copies and collation only. The service will open each file in order and send its data to the printer. I have created a custom class that implements the Printable interface to handle the multiple files. The class below is created for each file and handles the printing of the image file.
    I am using JDK 1.4.2 and WebSphere. I am stuck with these options b/c I have to use some IBM API's (IBM Content Manager 8.3) that are not compatible with 1.5 or higher.
    Is there any way to speed up my code. Possibly load the image differently?
    import java.awt.Graphics2D;
    import java.awt.RenderingHints;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import java.awt.print.PageFormat;
    import java.awt.print.Printable;
    import java.awt.print.PrinterException;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageReader;
    import javax.imageio.stream.FileImageInputStream;
    import javax.imageio.stream.ImageInputStream;
    public class ImagePrinter2 implements Printable
       public static final int PAPER_SIZE_LETTER = 0;
       public static final int PAPER_SIZE_LEGAL = 1;
       private final ImageReader reader;
       private final int _pageCount;
       private final File imageFile;
       private int _pageOffset;
       public ImagePrinter2(File imageFile) throws IOException
          this.imageFile = imageFile;
          ImageInputStream fis = new FileImageInputStream(this.imageFile);
          reader = (ImageReader) ImageIO.getImageReaders(fis).next();
          reader.setInput(fis);
          _pageCount = reader.getNumImages(true);
       public int print(java.awt.Graphics g, java.awt.print.PageFormat pf, int pageIndex)
          throws java.awt.print.PrinterException
          BufferedImage image = null;
          int currentPage = pageIndex - getPageOffset();  //pageIndex is for the overall job, I need the page in this file
          int imgWidth = 0, imgHeight = 0;
          int drawX = 0, drawY = 0;
          double scaleRatio = 1;
          try
             image = reader.read(currentPage);
             imgWidth = image.getWidth();
             imgHeight = image.getHeight();
          catch (IndexOutOfBoundsException e)
             return NO_SUCH_PAGE;
          catch (IOException e)
             throw new PrinterException(e.getLocalizedMessage());
          if (imgWidth > imgHeight)
             pf.setOrientation(PageFormat.LANDSCAPE);
          else
             pf.setOrientation(PageFormat.PORTRAIT);
          Graphics2D g2 = (Graphics2D) g;
          g2.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_SPEED);
          g2.translate(pf.getImageableX(), pf.getImageableY());
          g2.setClip(0, 0, (int) pf.getImageableWidth(), (int) pf.getImageableHeight());
          scaleRatio =
             (double) ((imgWidth > imgHeight)
                ? (pf.getImageableWidth() / imgWidth)
                : (pf.getImageableHeight() / imgHeight));
          //check the scale ratio to make sure that we will not write something off the page
          if ((imgWidth * scaleRatio) > pf.getImageableWidth())
             scaleRatio = (pf.getImageableWidth() / imgWidth);
          else if ((imgHeight * scaleRatio) > pf.getImageableHeight())
             scaleRatio = (pf.getImageableHeight() / imgHeight);
          //center image
          if (scaleRatio < 1)
             drawX = (int) ((pf.getImageableWidth() - (imgWidth * scaleRatio)) / 2);
             drawY = (int) ((pf.getImageableHeight() - (imgHeight * scaleRatio)) / 2);
          else
             drawX = (int) (pf.getImageableWidth() - imgWidth) / 2;
             drawY = (int) (pf.getImageableHeight() - imgHeight) / 2;
          AffineTransform at = AffineTransform.getTranslateInstance(drawX, drawY);
          if (scaleRatio < 1)
             at.scale(scaleRatio, scaleRatio);
          g2.drawRenderedImage(image, at);
          g2.dispose();
          image = null;
          return PAGE_EXISTS;
        * <br><br>
        * Created By: TSO1207 - John Loyd
        * @since version XXX
        * @return
       public int getPageCount()
          return _pageCount;
        * <br><br>
        * Created By: TSO1207 - John Loyd
        * @since version XXX
        * @return
       public int getPageOffset()
          return _pageOffset;
        * <br><br>
        * Created By: TSO1207 - John Loyd
        * @since version XXX
        * @param i
       protected void setPageOffset(int i)
          _pageOffset = i;
          * Release the reader resources
          * <br><br>
          * Created By: TSO1207 - John Loyd
          * @since version XXX
       public void destroy()
              try
                   ((ImageInputStream) reader.getInput()).close();
              catch (Exception e)
              reader.reset();
          reader.dispose();
        * Helps release memory used when printing (seems to be a 1.4.2 thing)
        * <br><br>
        * Created By: TSO1207 - John Loyd
        * @since version XXX
       public void reset() throws FileNotFoundException, IOException
          try
             ((ImageInputStream) reader.getInput()).close();
          catch (Exception e)
          reader.reset();
          ImageInputStream fis = new FileImageInputStream(imageFile);
          reader.setInput(fis);
    }

    I found a couple of issues. One was related to code the other to IBM. AS for the code I found an article about drawing scaled images here: http://today.java.net/pub/a/today/2007/04/03/perils-of-image-getscaledinstance.html which was quite useful. My updated code is below. The second issues is that the JRE I am using is the IBM Websphere 5.1 JRE which pretty much sicks. I tested using a Sun statndard 1.4.2 JRE and the print was 5 times faster. Now I am looking to find a way around that issue, but it is not a questions for this form.
    public int print(java.awt.Graphics g, java.awt.print.PageFormat pf, int pageIndex)
          throws java.awt.print.PrinterException
          BufferedImage image = null;
          int currentPage = pageIndex - getPageOffset();  //pageIndex is for the overall job, I need the page in this file
          int imgWidth = 0, imgHeight = 0;
          int drawX = 0, drawY = 0;
          double scaleRatio = 1;
          try
             image = reader.read(currentPage);
             imgWidth = image.getWidth();
             imgHeight = image.getHeight();
          catch (IndexOutOfBoundsException e)
             return NO_SUCH_PAGE;
          catch (IOException e)
             throw new PrinterException(e.getLocalizedMessage());
          if (imgWidth > imgHeight)
             pf.setOrientation(PageFormat.LANDSCAPE);
          else
             pf.setOrientation(PageFormat.PORTRAIT);
          Graphics2D g2 = (Graphics2D) g;
          g2.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_SPEED);
          g2.translate(pf.getImageableX(), pf.getImageableY());
          g2.setClip(0, 0, (int) pf.getImageableWidth(), (int) pf.getImageableHeight());
          scaleRatio =
             (double) ((imgWidth > imgHeight)
                ? (pf.getImageableWidth() / imgWidth)
                : (pf.getImageableHeight() / imgHeight));
          //check the scale ratio to make sure that we will not write something off the page
          if ((imgWidth * scaleRatio) > pf.getImageableWidth())
             scaleRatio = (pf.getImageableWidth() / imgWidth);
          else if ((imgHeight * scaleRatio) > pf.getImageableHeight())
             scaleRatio = (pf.getImageableHeight() / imgHeight);
          //find the scaled width and height
          int scaledWidth = imgWidth, scaledHeight=imgHeight;
          //center image
          if (scaleRatio < 1)
             drawX = (int) ((pf.getImageableWidth() - (imgWidth * scaleRatio)) / 2);
             drawY = (int) ((pf.getImageableHeight() - (imgHeight * scaleRatio)) / 2);
             //new code to set the scale
             scaledWidth = (int)(scaledWidth * scaleRatio);
             scaledHeight = (int)(scaledHeight * scaleRatio);
          else
             drawX = (int) (pf.getImageableWidth() - imgWidth) / 2;
             drawY = (int) (pf.getImageableHeight() - imgHeight) / 2;
    /*don't need transform
          /*AffineTransform at = AffineTransform.getTranslateInstance(drawX, drawY);
          if (scaleRatio < 1)
             at.scale(scaleRatio, scaleRatio);
          g2.drawRenderedImage(image, at);*/
          //use scale instance of draw image
          g2.drawImage(image, drawX, drawY, scaleWidth, scaleHeight, null);     
          g2.dispose();
          image = null;
          return PAGE_EXISTS;
       }Edited by: jloyd01 on Mar 7, 2008 1:35 PM

  • Need help - Print Menue in Acrobat Pro and Standard

    Hello,
    at first, i have to apologize for my bad englisch because I'm german.
    I downloaded a Trial of Acrobat pro and there I hava an extended Print menue where I can choose individual Color Profiles.
    There is an image attached.
    But I don't really need the Acobat pro Features, because I need Acrobat only for Color Printing on my Printer. And it ist expensive.
    So my Question to you is: Is this extended Print menue also in Acobat 9 Standard?
    There is no Trial, so that I hope, that someone can help me.
    Can I also set this settings in Acrobat 9 Standard?
    Thank you very much for helping me with my buying decision.
    Greetings from Munich
    Sebastian

    The Advanced Print menu in 9 Standard does not have all of the options that are in your screen shot.
    Checked with a coworker who has 9 Standard, and the options are much more limited. (I have 8 Pro).
    Bad news is you would need 9 Pro.
    Saw this the other day; sorry for the slow answer, good luck.

  • Need help printing in Classic to HP 1510

    I'm helping a person with an early 2001 iMac (500 MHz, 384 MB RAM) who's running 10.2.8 and 9.2.2. She got an HP 1510 all-in-one printer/scanner, and I'm trying to get it set up. I installed the printer software for OS X and for 9.2.2 (while running under 9.2.2) I can print from a 9.2.2 application (like Word for Office 2001) while running under 9.2.2, and I can print from an OS X application, but I can't print from a Classic application under OS X!
    When she tries to print from Office 2001 under Classic, the HP 1510 printer is found under "Page Setup" and "Print" in the Office 2001 application, the print job spools, but the Print Manager under Classic claims no printer is installed, and the Chooser under Classic can't find a USB-based printer under "HP Inkjet v6.6.1". This is where I found the USB-based printer when she was running 9.2.2. She has tried running the Desktop Printer Setup utility under Classic, but it doesn't see the USB-based HP 1510.
    What do I need to do to enable printing under Classic?

    gave up.

  • Need help Printing Address labels from Address Book

    I have a new iMac using OS X.4 1. I want to print address labels for Christmas cards. 2. I want to print several address labels of the same information for return address labels. I can't seem to figure it out. I've read the Help. I don't see where to put the # of labels per page. I created a Directory with only one name it it (so it would print several times on one page.) I selected Avery Standard - label 5162. Under label I selected Distribution List. I seem to be missing something.
    Thanks for any help you can give me.

    I wanted to do the same thing. The only way I was able to do this was to create a new group, then enter my name and address 30 times (the number of labels per sheet on Avery 8160). Then I was able to print as many sheets as I wanted. The bad news is you have to enter 30 times, the good news is once you done it you can print as many labels as you need. good luck

  • I need help printing from my original IPad..I have an Epson printer NX420 "

    Can anyone help me figure this out?  I want to be able to print from my email and am unable to at this time.

    You will need to get an application like Printopia, Print Central, Airport Activator and use it since your printer is not Airprint compatible.

  • Still Need Help: printing audio BUT not video to panasonic DVX 100A

    i've never had this problem before, never.
    i haven't printed to video that many times on this
    camera, but i have done it a few times, with the same
    computer set up.
    i've re-booted, un-attatched cables, re-attatched them,
    but still not showing video on the monitor window on the DVX.
    can some one help??
    and besides the audio getting to the camcorder,
    the screen does go black (instead of blue), just
    no video image.
    i've followed the same procedure for the last 5 years using Final Cut Pro:
    - selecting the sequence on the Browser
    - selecting mini dvd firewire (instead of 'none')
    on the drop down for Audio/Video quick setup.
    - and i've selected using same destination for 'print to video' as the source of video
    - under View, external video shows 'all frames'selected.
    - the pref's shows i'm using the DVX instead of another camera.
    thanks,
    kyle

    I'll back up Studio with my usual list:
    #8 External Monitor Viewing.
    Shane's Stock Answer #8:
    A simple path is mac > firewire > camera or deck > rca cables > tv
    Then start up your camera and tv, then open fcp.
    Then go View > External video > all frames
    Video playback should be Apple firewire NTSC (If you are using an NTSC set)
    Audio playback should be Audio follows Video
    Techinially, this should send synched video to your TV
    If for some reason you can't view your timeline on your external monitor, there are a few things to try:
    1) Make sure that the camera/deck is connected and powered on BEFORE you open FCP.
    2) In the Final Cut Pro menu select AUDIO/VIDEO Preferences and make sure your signal is being sent out thru Firewire DV.
    3) Go to the menu and select VIEW>EXTERNAL>ALL FRAMES.
    4) Click in the % box above the image and select FIT TO WINDOW.
    5) Go to VIEW->refresh A/V devices
    6) Make sure the Log & Capture window is closed
    If you want it to play in both the canvas and the external monitor you need to go to the FINAL CUT PRO menu and select AUDIO/VIDIO settings and make sure MIRROR ON DESKTOP is selected under the PLAYBACK OUTPUT section
    Shane

  • NEED HELP PRINTING LABELS ON MY MACBOOK PRO. PLEASE!!

    HELP!  I HAVE A 6 MONTH OLD MACBOOK PRO AND AM USING THE NEWEST VERSION OF PAGES.
        I DOWNLOAD MAILING ADDRESSES FROM THE TAX OFFICE FORMATTED FOR AVERY 5160 LABELS.
        THE DOWNLOAD COMES IN AS A .RTF  (WORD RICH TEXT FORMAT).  I CAN'T OPEN THE DOWNLOAD WITH
        PAGES.  THIS REALLY *****. 
       I WILL BUY NEW SOFTWARE IF NEEDED.
        ANY SUGGESTIONS ?

    Pages 5 no longer opens .rtf. Just one of over 100 features Apple removed.
    You can open it in TextEdit and resave it as .txt or .docx
    If you can however you will be better off using Pages '09 which should be in your Applications/iWork folder.
    Peter

  • Need help printing contact sheet

    I am trying to print a contact sheet photo booth style.  I have 20 photos (5 rows, 4 to a row).  When I hit print and contact sheet, there are 3 to a row.  When I customize by sliding bar to 4 per row, it completely reorders the whole set of 20 and I can't cut them in the strips of 4 as I had planned.  Help, please!

    WOrst case you will have to do 5 prints of 4 photos each
    I'vt but I seem to remember form sometime g=that on the customize preview you can drag te photos around to reorder - give it a shot
    LN

  • Need help printing to a Windows 7 networked printer

    Hi,
    I have a new MacBook Air and I am trying to get it to print wirelessly to a network printer that is connected to a Windows 7 computer.  I am at the point where the printer (an HP laserjet) shows up as the default printer, as it should, but when I try to print I get a "hold for authorization" message.
    I have found several explanations online for sharing a windows 7 printer and have activated the LPD Print Service on the Windows 7 computer, but the advice then says to go to the Mac and open the Print & Fax system preference.  There is no such thing on the Mountain Lion operating system, and the Print & Scan preference dows not have the features that allow me to get to the advanced button and select LDB/LPR Host or Printer as the type.
    Does anyone know how to share a Windows 7 printer on MacBook Air Mountain Lion?  Or is there someone who can tell me how to get to the toolbar described in the old Print & Fax system preference?

    With Print &amp; Scan open, click the plus button under the Printers column to see the Add window. This window has the Default, IP and Windows icons. Click the IP icon, enter the IP address of the Win7 box, change the protocol to LPD and enter the shared name for the printer in the Queue field. Then select the driver and click Add to complete.

  • Need help printing in classic to hp laserjet 3050

    when I try to print a classic document it can't find my printer. I look in chooser and it's not there. I have both the mac os X 10.3.9 and the mac 9.1. No problems with os X

    Welcome To Discussions sweethart!
    If this HP LaserJet 3050 All-in-One is the model, I don't see a driver available for OS 9 on that site.
    Without a driver installed in OS 9, you can't print from Classic.
    Maybe greg sahli, the printer guru, can offer an alternate means.
    ali b

  • Need help printing

    I'm writing a program that is supposed to track and organize data and then print a report of the data from my printer but I can't quite figure out how to make the printer print. If someone knows where I can find a tutorial on printing in Java, I'd really appreciate it.

    http://java.sun.com/docs/books/tutorial/2d/printing/index.html

  • Need help printing pagefooter conditionally based on page number

    In the layout I'm working on, there is a <?call:footer?> in footer section. I want to avoid call it for certain pages. Eg. not print it on the first page.
    Is there a page-variable available that can be used to conditionally test and print this? (in example below find something replacing "currentpagevariable")
    Eg. <?if:currentpagevariable!='1'?><?call:footer?><?end if?>
    Note, I've tried to use the "Different first page" option, but due to reports complexity in report header, cannot use this option.
    Any suggestions as soon as possible would be much appreciated.
    /Thanks, Dan

    this is not possible.

Maybe you are looking for