Printing Powerpoint doc

Since installing 10.5 system my powerpoint doc will not print correctly. Formated document has all typing jumbled into the left hand side of the document, within the appropiate boxes.
Any fix suggestions would be appreciated.

One of my clients has the same issues but we were able to solve a part of them:
On Brother HL-5250 printers the Printer Setup Utility picks the CUPS driver by default which creates the results you describe: All text on top of each other on the left.
We solved this by switching to the correct one, the BR-Script3 Postscript driver also included with Leopard.
But we still have the same issue with PowerPoint and a Xerox DocuCentre 535: Although the driver chosen here should be a PostScript version we still have the same issues.
Over the weekend I'll try to figure out if installing the older PPD version 1.5 from Xerox solve the issue (according to Apple version 1.5.2 is included with Leopard).
- Norbert

Similar Messages

  • I have the latest ipad2 and trying to print a doc. It does not find my printer . My printer is a canon mp990 wifi

    I have the latest ipad2 and trying to print a doc. It does not find my printer . My printer is a canon mp990 wifi. Can anyone tell me what I am doing wrong?

    Hi,
    If you are trying to utilize AirPrint you need an HP compatible printer listed here.
    http://www.apple.com/ipad/features/airprint.html
    Scroll down.
    Carolyn  

  • How can I print a doc from my iPhone 4S to a Lexmark Interpret S405 printer with WiFi? Thanks!

    How can I print a doc from my iPhone 4S to a Lexmark Interpret S405 printer with WiFi? Thanks!

    Unfortunately you need an airprint enabled printer to print from an iOS device. There are some work arounds but they are very complicated and aren't proven to work 100%. From what I understand through rumors they are working on allowing all wireless printers to work with iOS but at the moment that's a pipedream. I don't know how important it is but if you really need to print from iPhone you can find some great AirPrint printers on Ebay for decent prices. Good Luck!

  • How to print an Doc file(MS Word File)on a printer in JAVA

    Hi.I am Prakash.
    Folowing is the code that i have used to print an doc file on a printer. Problem is that , when i run this code it will provide me an printout of a doc file.,but not in well formate as the actual formate of the file. If any one tried this before plz help me.Thanks
    import java.lang.reflect.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.Graphics2D;
    import java.io.*;
    import javax.swing.*;
    import javax.print.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.*;
    import javax.print.event.*;
    public class BasicPrint {
         JFrame frame;
         JButton btn;
         private boolean PrintJobDone = false;
         protected void MakeGui() {
              frame = new JFrame("PrintService");
              btn = new JButton("Cancel Print Job");
              btn.disable();
              frame.getContentPane().add(btn, BorderLayout.SOUTH);
              frame.pack();
              frame.setVisible(true);
         BasicPrint(String FileToPrint, String pMode) {
              try {
                   MakeGui();
                   File baseDir = new File("d:/doc");
    File outDir = new File(baseDir, FileToPrint);
                   // Open the image file
                   InputStream is = new BufferedInputStream(new FileInputStream(
                             outDir));
                   // Find the default service
                   DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
                   //DocFlavor flavor = new DocFlavor("application/msword", "java.io.InputStream");
                   //DocFlavor docFlavor = new DocFlavor("application/vnd.ms-word", "java.io.InputStream");
                   if (pMode != null && pMode.equalsIgnoreCase("PS"))
                        flavor = DocFlavor.INPUT_STREAM.POSTSCRIPT;
                   else if (pMode != null && pMode.equalsIgnoreCase("PDF"))
                        flavor = DocFlavor.INPUT_STREAM.PDF;
                   else if (pMode != null && pMode.equalsIgnoreCase("JPG"))
                        flavor = DocFlavor.INPUT_STREAM.JPEG;
                   else if (pMode != null && pMode.equalsIgnoreCase("GIF"))
                        flavor = DocFlavor.INPUT_STREAM.GIF;
                   else if (pMode != null && pMode.equalsIgnoreCase("PNG"))
                        flavor = DocFlavor.INPUT_STREAM.PNG;
                   else if (pMode != null && pMode.equalsIgnoreCase("PCL"))
                        flavor = DocFlavor.INPUT_STREAM.PCL;
                   else if (pMode != null && pMode.equalsIgnoreCase("RAW"))
                        flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
                   else if (pMode != null && pMode.equalsIgnoreCase("TXT16"))//****                                   *********
                        flavor = DocFlavor.INPUT_STREAM.TEXT_PLAIN_UTF_16;
                        System.out.println("****ACTIVE***");
                   else if (pMode != null && pMode.equalsIgnoreCase("TXTBE"))//****
                        flavor = DocFlavor.INPUT_STREAM.TEXT_PLAIN_UTF_16BE;
                   else if (pMode != null && pMode.equalsIgnoreCase("TXTHOST"))//***
                        flavor = DocFlavor.INPUT_STREAM.TEXT_PLAIN_HOST;
                   else if (pMode != null && pMode.equalsIgnoreCase("TXT8"))
                        flavor = DocFlavor.INPUT_STREAM.TEXT_PLAIN_UTF_8;
                   else if (pMode != null && pMode.equalsIgnoreCase("TXTASCI"))
                        flavor = DocFlavor.INPUT_STREAM.TEXT_PLAIN_US_ASCII;
                   else if(pMode != null && pMode.equalsIgnoreCase("TXTLE"))
                        flavor = DocFlavor.INPUT_STREAM.TEXT_PLAIN_UTF_16LE;                                        //*******
                   else if(pMode != null && pMode.equalsIgnoreCase("SEVICE"))
                        flavor = DocFlavor.SERVICE_FORMATTED.PRINTABLE;
                   String type = flavor.getMediaType();
                   System.out.println("Type ="+ type);
                   //IMPRIMIR prakashCV.doc TXT text/plain; charset="utf-16le"; class="java.io.InputStream"
                   System.err.println("* IMPRIMIR " + FileToPrint + " " + pMode + " "
                             + flavor);
                   PrintService dservice = PrintServiceLookup
                             .lookupDefaultPrintService();
                   PrintService[] services = PrintServiceLookup.lookupPrintServices(
                             flavor, null);
                   if (services == null || services.length < 1)
                        services = PrintServiceLookup.lookupPrintServices(null, null);
                   PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
                   aset.add(new Copies(1));
                   aset.add(OrientationRequested.PORTRAIT);
                   // aset.add(MediaTray.MAIN);
                   aset.add(Sides.ONE_SIDED);
                   aset.add(MediaSizeName.ISO_A4);
                   PrintService service = ServiceUI.printDialog(
                             (GraphicsConfiguration) null, 60, 60, services,
                             (PrintService) dservice, (DocFlavor) flavor, aset);
                   if (service != null) {
                        // Create the print job
                        final DocPrintJob job = service.createPrintJob();
                        Doc doc = new SimpleDoc(is, flavor, null);
                        // Monitor print job events; for the implementation of
                        // PrintJobWatcher,
                        PrintJobWatcher pjDone = new PrintJobWatcher(job);
                        if (job instanceof CancelablePrintJob) {
                             btn.addActionListener(new ActionListener() {
                                  public void actionPerformed(ActionEvent evt) {
                                       CancelablePrintJob cancelJob = (CancelablePrintJob) job;
                                       try {
                                            cancelJob.cancel();
                                       } catch (PrintException e) {
                                            // Possible reason is job was already finished
                             btn.enable();
                        try {
                             // Print it
                             job.print(doc, (PrintRequestAttributeSet) aset);
                        } catch (PrintException e) {
                             e.printStackTrace();
                        System.err.println("* Impresion Realizada - Esperando ..");
                        // Wait for the print job to be done
                        pjDone.waitForDone();
                   // It is now safe to close the input stream
                   is.close();
              } catch (IOException e) {
                   e.printStackTrace();
              } catch (Exception e) {
                   e.printStackTrace();
              } finally {
                   try {
                        synchronized (BasicPrint.this) {
                             PrintJobDone = true;
                             BasicPrint.this.notify();
                   } catch (Exception e) {
                        e.printStackTrace();
         public synchronized void waitForDone() {
              try {
                   while (!PrintJobDone) {
                        wait();
              } catch (InterruptedException e) {
                   e.printStackTrace();
         public static void main(String[] args) {
              try {
                   //args[0]="t";
                   //args[1]="rr";
    //               if (args.length < 1) {
    //                    System.err.println("\nSintaxis:\n\n java BasicPrint FileToPrint [pMode]\n");
    //                    System.exit(0);
                   BasicPrint bp = null;
                   //if (args.length < 2){
                        //bp = new BasicPrint(args[0], null);
                   //}else{
                        //bp = new BasicPrint(args[0], args[1]);
                        bp = new BasicPrint("prakashCV.doc","SEVICE");                                                       //****/***
                   bp.waitForDone();
                   System.exit(0);
              } catch (Exception e) {
                   e.printStackTrace();
         class PrintJobWatcher {
              // true iff it is safe to close the print job's input stream
              boolean done = false;
              int lastEvent = 0;
              PrintJobWatcher(DocPrintJob job) {
                   // Add a listener to the print job
                   job.addPrintJobListener(new PrintJobAdapter() {
                        public void printJobRequiresAttention(PrintJobEvent pje) {
                             lastEvent = pje.getPrintEventType();
                             System.err
                                       .println("* La impresora requiere de su Atencion ! * "
                                                 + pje);
                             // allDone();
                        public void printDataTransferCompleted(PrintJobEvent pje) {
                             lastEvent = pje.getPrintEventType();
                             System.err
                                       .println("* Transferencia de datos a la impresora OK. * "
                                                 + pje);
                             // allDone();
                        public void printJobCanceled(PrintJobEvent pje) {
                             lastEvent = pje.getPrintEventType();
                             System.err.println("* Trabajo de impresion CANCELADO ! * "
                                       + pje);
                             allDone();
                        public void printJobCompleted(PrintJobEvent pje) {
                             lastEvent = pje.getPrintEventType();
                             System.err.println("* Impresion completa OK. * " + pje);
                             allDone();
                        public void printJobFailed(PrintJobEvent pje) {
                             lastEvent = pje.getPrintEventType();
                             System.err.println("* ERROR en la Impresion ! * " + pje);
                             // allDone();
                        public void printJobNoMoreEvents(PrintJobEvent pje) {
                             lastEvent = pje.getPrintEventType();
                             System.err
                                       .println("* No mas eventos de impresion * " + pje);
                             allDone();
                        void allDone() {
                             synchronized (PrintJobWatcher.this) {
                                  done = true;
                                  PrintJobWatcher.this.notify();
              /** Description of the Method */
              public synchronized void waitForDone() {
                   try {
                        while (!done) {
                             wait();
                   } catch (InterruptedException e) {
                        e.printStackTrace();
    }

    Hi Maxpkh
    Do you mean attachment? You can't do that with free Adobe Reader you need Acrobat to do this.
    ~Deepak

  • Keynote and printing powerpoint presentations

    With keynote, how do you print powerpoints with presenter notes and multiple slides per page..i tried and it's printing the slides, but I can't adjust my margins and the slides are printing about an inch per slide and it's unreadable

    Thank you Kyn Drake. Hopefully, in the next Keynote they make it more flexible. As is, not having to do the drag and opening dictionary but have it right their were your writing.

  • Can not print pdf docs

    Can not print pdf docs after intalling Lion. Any solutions?

    https://discussions.apple.com/thread/3191292?tstart=0
    https://discussions.apple.com/thread/3220882?tstart=50
    https://discussions.apple.com/thread/3219969?tstart=50
    https://discussions.apple.com/thread/3216206?tstart=50

  • I can't print a doc in adobe reader x

    I can't print a doc in adobe reader x

    Is there a Dock Icon that was created for your Printer? If so, open it and look at the list to be printed and delete the extras.
    If not, you did not get that far, so no 15 copies for you!

  • Put in the clipboard, from an VB program, an image with a tooltip and a hyperlink to paste them into a Word or PowerPoint doc.

    I tried to put
    in the clipboard an image with an associated tooltip
    and a hyperlink to paste them into a Word or PowerPoint doc.
    I tried to do it with the usual Clipboard's methods SetData and GetData. It's easy to paste an image, text, rich text, html, but it does not appear to be able to associate metadata or hyperlink to an image.
    Usally the tooltip
    and the hyperlink are in the metadata
    associated with the object.
    I think it can be done with the CliboardData class and its Data and Metadata properties, working with the different items of the List of Objects, but I don't know how to tackle it.
    Any suggestions?
    Thank You

    I tried to put
    in the clipboard an image with an associated tooltip
    and a hyperlink to paste them into a Word or PowerPoint doc.
    I tried to do it with the usual Clipboard's methods SetData and GetData. It's easy to paste an image, text, rich text, html, but it does not appear to be able to associate metadata or hyperlink to an image.
    Usally the tooltip
    and the hyperlink are in the metadata
    associated with the object.
    I think it can be done with the CliboardData class and its Data and Metadata properties, working with the different items of the List of Objects, but I don't know how to tackle it.
    Any suggestions?
    Thank You
    Does word or powerpoint associate a tooltip and hyperlink to an image and then allow that image with those associations to be copied to another open word or powerpoint document? If not then your probably wasting your time.
    This code can "listen" for items copied to the clipboard. Needs a RichTextBox on a Form.
    Option Strict On
    Imports System.Runtime.InteropServices
    Public Class Form1
    ' System.Windows.Forms.DataFormats class http://msdn.microsoft.com/en-us/library/system.windows.forms.dataformats(v=vs.110).aspx
    Declare Function AddClipboardFormatListener Lib "user32.dll" (hWnd As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
    Declare Function RemoveClipboardFormatListener Lib "user32.dll" (hWnd As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
    Dim DataFormats As New Dictionary(Of String, String)
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.CenterToScreen()
    DataFormats.Add("Bitmap", "Specifies a Windows bitmap format. This static field is read-only.")
    DataFormats.Add("CommaSeparatedValue", "Specifies a comma-separated value (CSV) format which is a common interchange format used by spreadsheets. This format is not used directly by Windows Forms. This static field is read-only.")
    DataFormats.Add("Dib", "Specifies the Windows device-independent bitmap (DIB) format. This static field is read-only.")
    DataFormats.Add("Dif", "Specifies the Windows Data Interchange Format (DIF) which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("EnhancedMetafile", "Specifies the Windows enhanced metafile format. This static field is read-only.")
    DataFormats.Add("FileDrop", "Specifies the Windows file drop format which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("Html", "Specifies text in the HTML Clipboard format. This static field is read-only.")
    DataFormats.Add("Locale", "Specifies the Windows culture format which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("MetafilePict", "Specifies the Windows metafile format which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("OemText", "Specifies the standard Windows original equipment manufacturer (OEM) text format. This static field is read-only.")
    DataFormats.Add("Palette", "Specifies the Windows palette format. This static field is read-only.")
    DataFormats.Add("PenData", "Specifies the Windows pen data format which consists of pen strokes for handwriting software; Windows Forms does not use this format. This static field is read-only.")
    DataFormats.Add("Riff", "Specifies the Resource Interchange File Format (RIFF) audio format which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("Rtf", "Specifies text consisting of Rich Text Format (RTF) data. This static field is read-only.")
    DataFormats.Add("Serializable", "Specifies a format that encapsulates any type of Windows Forms object. This static field is read-only.")
    DataFormats.Add("StringFormat", "Specifies the Windows Forms string class format which Windows Forms uses to store string objects. This static field is read-only.")
    DataFormats.Add("SymbolicLink", "Specifies the Windows symbolic link format which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("Text", "Specifies the standard ANSI text format. This static field is read-only.")
    DataFormats.Add("Tiff", "Specifies the Tagged Image File Format (TIFF) which Windows Forms does not directly use. This static field is read-only.")
    DataFormats.Add("UnicodeText", "Specifies the standard Windows Unicode text format. This static field is read-only.")
    DataFormats.Add("WaveAudio", "Specifies the wave audio format which Windows Forms does not directly use. This static field is read-only.")
    AddClipboardFormatListener(Me.Handle)
    End Sub
    Private Sub Form1_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
    RemoveClipboardFormatListener(Me.Handle)
    End Sub
    Protected Overrides Sub WndProc(ByRef m As Message)
    If m.ToString.Contains("msg=0x31d") Then
    Invoke(New ClipboardListenerDelegate(AddressOf ClipboardListener))
    End If
    MyBase.WndProc(m)
    End Sub
    Private Delegate Sub ClipboardListenerDelegate()
    Private Sub ClipboardListener()
    If InvokeRequired Then
    Invoke(New ClipboardListenerDelegate(AddressOf ClipboardListener))
    Else
    RichTextBox1.Clear()
    For Each Item In DataFormats.Keys
    If Clipboard.ContainsData(Item) = True Then
    RichTextBox1.AppendText(Item & " .. " & DataFormats(Item) & vbCrLf)
    End If
    Next
    End If
    End Sub
    End Class
    La vida loca

  • HpqtBx01.exe runs in background after printing a doc

    every time I print a doc this pgm continues to run, causing the fan on my HP dv9005 to run at high speed.  The only way to fix it is to log off and manually shut the pgm down when the error message pops up.  I've removed and re-installed my s/w several times and it keeps happening.  I run windows XP with an HP 0fficejet 4315

    Hi
    I observing the exactly similar situation for my laptop with HP Officejet 6300 series printer attached. I wonder if you ever got it resolved ?
    If so, what was the cure ?
    Thanks in advance
    Peter

  • Can i open and edit a powerpoint doc in keynote?

         can i open and edit a powerpoint doc in keynote?

    Yes you can. It helps a lot if the fonts and effects used have the equivalent  in Keynote otherwise they will be substituted.  It can be saved as PowerPoint or as a Keynote file.

  • How to print a doc using  Reader 11.0.3.37

    I am unable to print a document using Adobe Reader 11.0.3.37.
    Any ideas about how to do so?

    When I try to print the doc, I selected the particular doc to print (copy), the ckicked on to "view document", and a gray screen populates without any graphics.
    The error message that I got, after one try, was to the effect that a problem existed in my security set-up. 
    I checked the security system software file and read that the Adobe Reader was installed and "running", yet I have not discovered what I need to do to get a print of the doc. 

  • Printing adobe doc suddenly stopped

    Within the last week or so, I suddenly can't print adobe docs.  When I select print, a dialogue box appears saying cannot print, then upon hitting ok, another box appears saying could not print because 'there were no pages selected to print".  I have tried everything and even did system restore.  I have made no changes or have done anything that would explain why suddenly I am having this problem. I want to be able to print, but it would also be nice to know what caused this.

    In the applicable product forum, you can start a New Discussion (post), from the main page. See this illustration:
    Hope that helps, and that you also get some helpful responses. If you still have issues, just PM either Jacob, or me (going out of town for 4 days), and we'll Move your thread to the product forum, that applies.
    Good luck,
    Hunt

  • Deskjet 1510 can't print powerpoint slide at the centre of page

    My Deskjet 1510 can't print powerpoint slide at the centre of A4 paper, even after I change both the slide dimension and the paper size in printer preference (advanced) to A4. Please help.  

    Is the print quality good with other applications, such as Word?
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

  • My printer will not print the docs in the que.

    My printer will not print the docs in the que. I think it may be the norton virus protection I Installed recently. How do I fix this?

    If one thing gets held up in que then all other doc's follwing will be held up as well-
    Download and run the "PRINT DIAGNOSTIC UTILITY" to get rid of the things in your print que
    Download it here:
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategor​y?os=4063&lc=en&cc=us&dlc=en&sw_lang=&product=4083​...
    Save it to your Desktop and then run it> Click "Fix" when it comes to your QUE
    Although I work for HP, I am speaking for myself and not for HP.
    Kudos! If you feel my post has helped you please click the White Kudos! Star just below my name : )
    If you feel my answer has fixed your problem please click 'Mark As Solution' and make it easier for others to find help quickly : )

  • Samsung CLP310 printer- printing word doc problem

    i have had a Samsung CLP310 printer for a while and its worked perfectly, however, just recently it has not allowed me to print word.doc files , i have to convert them first to a pdf and then print.
    Does anyone know if there has been a change to the driver or if i have downloaded a recent universal software upgrade that has mucked things up? Any advice well.
    (I have tried the reset printers options etc..)
    Many thanks

    I'm having the same exact problem but can't seem to get ANY response!! The link below was never responded to so I copied it here. IS THERE A WAY TO MAKE ADOBE USE THE "HP" DRIVER AND NOT THE XEROX?????
    http://www.adobeforums.com/webx/.59b4e3da/1
    We have a similar problem with 2007 Excel files embedded in Autodesk Inventor 2008. The pdf preview will look fine, but the PDF file has the black box that you are talking about. Also happens when we print to a Xerox Phaser 7300. When we print to a "HP designjet 800" it will print fine. Does it has something to do with the Xerox printer driver???? We have all the latest updates we beleive? We started with Acrobat Adobe 8.1.1, a new install shouldn't have to install 8.0 first should it?
    Specs: O.S.: XP Pro x64 Edition Version 2003 sp3
    Machine: H.P. xw9300 Workstation, AMD Opteron Processor 250,
    2.39 GHz, 4.00 GB of RAM
    Video: NVIDIA Quadro FX 3450/4000 SDI with driver version 9.1.3.6 running D3D in Inv.
    With NVIDIA Desktop Manager disabled
    3D navigator: 3DConnexion - Spaceball 5000 Driver Ver. 6.3.3

Maybe you are looking for

  • Monitor Oracle E-Business Suite R12.1.2

    Dear all, can someone help me to configure dmstool for Oracle ebs 12.1.2 to monitor the processes. Thanks in advance. Regards, Anoep

  • Making Photo Montage for Desktop

    Hi Guys, I have a ton of really small photographs in a folder on my desktop that I would like to have in one large picture. I am looking to create something that has all the photos (or at least most) on a grid in one large picture and then set that a

  • Error in tool area iview..

    hi... I already have a portaldesktop assigned to our portal by someone. To find what framework page they have assigned to the portaldesktop, I have gone to masterrule collection and have seen the assigned framework page to our portal. Once I got the

  • I need help setting up a mackie onyx 1620 mixing console

    I have just purchased a new iMac, and need to get the firewire working in Logic Pro 9. I have a Mackie Onyx 1620 Mixing console Any help

  • Why is my old PC laptop better at picking up wifi than my shiny new iMac?

    I have a HP laptop (3 years old) linked to my Virgin broadband (cable modem at least 5 years old) via a Netgear wireless router (4 years old). Why doesn't my new iMac and iPad link to the internet as well as the old PC? Is it a Safari issue? Is it my