Automator: Cannot convert multiple .doc files to PDF

Hi everyone!
I can't get my automator to print PDF files correctly. Once I have run the workflow I try to open the files and they are "messed up" preview and adobe both tell me that the "File cannot be opened. It may be damaged or use a file format that Preview doesn’t recognize."
When I go to Automator I see an error message - (1728) The object you are trying to access does not exist. However, if I manually create the PDF from Word or Pages, I have no problem.
I really appreciate the help, I need this to grade student papers and I have 200 students. Figuring this out would really make my life better.
Thank you for your time!
Diana

Here's the screenshot.
I tried using several different files and it seems not to be the problem.
/Users/arqanaid/Desktop/Screen shot 2011-03-04 at 2.32.46 PM.png
Thank you all for being so helpful!

Similar Messages

  • Converting Multiple .EPS files into .PDF

    Dear Forum:  We have tried converting multiple .eps files into PDF using article 325977. This article in Adobe help is really designed to convert .ai files into either .eps or.pdf, our situation is to convert multiple .eps files into PDF. Everytime we run the macro, it simply takes the eps file and saves it as another eps file and does not convert. We have a "Save As" step that we have in the macro that is set to "Save As" PDF, but it still does not work. What are we doing wrong?

    Hi mephisto11757,
    You can convert the following file types to PDF with the Adobe CreatePDF service:
    Adobe Creative Suite® file formats Examples include: .psd, .ai, .indd
    Microsoft Word (2000, XP, 2003, 2007, 2010, & 2011) .doc, .docx
    Microsoft Excel (2000, XP, 2003, 2007, 2010, & 2011) .xls, .xlsx
    Microsoft PowerPoint (2000, XP, 2003, 2007, 2010, & 2011) .ppt, .pptx
    Microsoft Publisher (2000, XP, 2003, 2007, 2010, & 2011) .pub
    Text Files .txt
    Rich Text Format .rtf
    Adobe PostScript .ps
    OpenOffice Format .odt
    Star Office .sxw, .sxi, .sxc, .sxd, .stw
    Corel WordPerfect .wpd
    Image file formats .gif, .png, .jpg, .bmp, .tiff
    Regards,
    Florence

  • Setting Font for converting multiple text files into PDF using VB 6.0

    Dear All,
    Am converting multiple text files into PDF using VB6.0. Currently, am unable to control the font face and size for the generated files. Below is the procedure am using for each file;
    Public Sub proc_convert_to_PDF(srcFilename As String, destFilename As String)
    Dim p_AcroApp As CAcroApp
    Dim p_VDoc As CAcroAVDoc
    Dim p_DDoc As CAcroPDDoc
    Dim IsOk As Boolean
    Set p_AcroApp = CreateObject("AcroExch.App")
    Set p_VDoc = CreateObject("AcroExch.AVDoc")
    Call p_VDoc.Open(srcFilename, "")
    Set p_VDoc = p_AcroApp.GetActiveDoc
    If p_VDoc.IsValid Then
    Set p_DDoc = p_VDoc.GetPDDoc
    ' Fill in pdf properties.
    p_DDoc.SetInfo "Title", Format(Date, "dd-mm-yyy")
    p_DDoc.SetInfo "Subject", srcFilename
    If p_DDoc.Save(1 Or 4 Or 32, destFilename) <> True Then
    MsgBox "Failed to save " & srcFilename
    End If
    p_DDoc.Close
    End If
    'Close the PDF
    p_VDoc.Close True
    p_AcroApp.Exit
    'Clear Variables
    Set p_DDoc = Nothing
    Set p_VDoc = Nothing
    Set p_AcroApp = Nothing
    End Sub
    What I need;
    1) to be able to set the font face of the destination file ( destFilename)
    2) to be able to set the font size of the destination file ( destFilename)
    Am using Adobe Acrobat 7.0 Type Library
    Kindly Help.
    Thanks in advance

    We didn't say it doesn't work. We said it isn't supported.
    There are a number of other ways to make a PDF. The one which would
    give the most control is if your application directly printed to GDI,
    controlling the font directly. This could print to Adobe PDF.
    You could look for an application that gives control of font for
    printing.
    You could use a text-to-PostScript system and distill the result. You
    could even look for a non-Adobe text-to-PDF.
    Working in the unsupported and dangerous world you chose, the font
    size for text conversion is set (and this is very bad design from
    Adobe) in the settings for Create PDF > From Web Page. There is no API
    to this.
    Aandi Inston

  • I created a new adobe account. I want to convert a doc file into pdf. How to do that?

    HI,
    I created a new adobe account. I want to convert a doc file into pdf. How to do that?
    I have seen a Create pdf menu and under that Convert office files to pdf. But I can't click it, why?
    How to convert my doc file to pdf?

    Hello,
    if you create your doc files by the help of WORD, you could use a Microsoft add on (it depends of your WORD Version).
    Hans-Günter

  • To convert multiple image files to pdf using pdfsharp in C#

    Hey guys I have this C# code to convert any image file to .pdf using pdfsharp.dll. But I want to select multiple images for conversion please help. here's my code (plz note enable pdfsharp.dll in the reference)
    usingSystem;
    usingSystem.Collections.Generic;
    usingSystem.Linq;
    usingSystem.Text;
    usingSystem.Threading.Tasks;
    usingPdfSharp.Pdf;
    usingPdfSharp.Drawing;
    usingSystem.IO;
    namespaceConsoleApplication1
    classProgram
    staticvoidMain(string[]
    args)
    PdfDocumentdoc =
    newPdfDocument();
    doc.Pages.Add(newPdfPage());
    XGraphicsxgr =
    XGraphics.FromPdfPage(doc.Pages[0]);
    XImageimg =
    XImage.FromFile(source
    path...);
    xgr.DrawImage(img,0,0);
    doc.Save(destination path...);
    doc.Close();

    try this one
    public string CreatePDF(System.Collections.Generic.List<byte[]> images)
    dynamic PDFGeneratePath = Server.MapPath("../images/pdfimages/");
    dynamic FileName = "attachmentpdf-" + DateTime.Now.Ticks + ".pdf";
    if (images.Count >= 1) {
    Document document = new Document(PageSize.LETTER);
    try {
    // Create pdfimages directory in images folder.
    if ((!Directory.Exists(PDFGeneratePath))) {
    Directory.CreateDirectory(PDFGeneratePath);
    // we create a writer that listens to the document
    // and directs a PDF-stream to a file
    PdfWriter.GetInstance(document, new FileStream(PDFGeneratePath + FileName, FileMode.Create));
    // opens up the document
    document.Open();
    // Add metadata to the document. This information is visible when viewing the
    // Set images in table
    PdfPTable imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    for (int ImageIndex = 0; ImageIndex <= images.Count - 1; ImageIndex++) {
    if ((images(ImageIndex) != null) && (images(ImageIndex).Length > 0)) {
    iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(SRS.Utility.Utils.ByteArrayToImage(images(ImageIndex)), System.Drawing.Imaging.ImageFormat.Jpeg);
    // Setting image resolution
    if (pic.Height > pic.Width) {
    float percentage = 0f;
    percentage = 400 / pic.Height;
    pic.ScalePercent(percentage * 100);
    } else {
    float percentage = 0f;
    percentage = 240 / pic.Width;
    pic.ScalePercent(percentage * 100);
    pic.Border = iTextSharp.text.Rectangle.BOX;
    pic.BorderColor = iTextSharp.text.BaseColor.BLACK;
    pic.BorderWidth = 3f;
    imageTable.AddCell(pic);
    if (((ImageIndex + 1) % 6 == 0)) {
    document.Add(imageTable);
    document.NewPage();
    imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    if ((ImageIndex == (images.Count - 1))) {
    imageTable.AddCell(string.Empty);
    document.Add(imageTable);
    document.NewPage();
    } catch (Exception ex) {
    throw ex;
    } finally {
    // Close the document object
    // Clean up
    document.Close();
    document = null;
    return PDFGeneratePath + FileName;

  • Converting multiple bmp files to PDF using acrobat 7.0 from DOS prompt

    Hi,
    I have a requirement to convert multiple BMP files in a folder to one PDF.
    I can use multiple file conversion option in acrobat to combine and convert them to one PDF .. but I have 2000 such folder to conver to PDF.
    PDF should be name after the folder name.
    Is there a to automate this in acrobat.. or can we run this conversion from DOS prompt using commands.. so that I can create a bat file and have them converted. Pls let me know.
    Thanks
    Pugazh

    I have not tried BMP files, but do JPeg, GIF, TIFF, and PNG files regularly. I simply open Acrobat, then select the graphics files in explorer and drag & drop to Acrobat. I then organize the graphics if needed (using the pages tab) and save to a PDF.

  • Automation for converting short innd files to pdf

    I have a lot of very short indd files that need to be Exported to pdf. Does anyone know of a script that will do a batch conversion to eliminate the process of doing it manually? I have the indd files with the same name as the resultant pdfs. The pdfs will be stored in a FileMaker database that will contain a few thousand files.
    Thanks,

    This is an old post and I'm sure your project is long past. For any future projects of a similar nature, use the "Batch-Converter" script found at the link below.
    http://www.kahrel.plus.com/indesign/batch_convert.html
    This is the thread I found it on: Scripts you find useful

  • Preview not saving when converting multiple .eps files to .pdf

    Hi,
    I have a macbook pro with snow leopard. I open a group of .eps image files using preview into the same window. I then shut the window with "cmd w". It says do you want to save all. I click save all. But then no saves are made.
    If i open the group of .eps files using preview into separate windows and click "cmd w", then click save, it tries to save as untitled.pdf as opposed to "filename".pdf.
    I previously used preview on a powerbook to convert .eps images to .pdf. In that version of preview the files would open in their own window. When i hit "cmd w" and save it would use save file as "filename".pdf.
    Why does the newer version of preview not at least do this? Preferably the new version of preview would save all the .eps files as a batch as stated in my first sentence.
    Does anyone have any ideas what i can do?

    Possibly similar problem:
    When I open a JPEG in Preview, adjust the quality, and try to Save As, it simply saves as the original, not the new reduced-quality file. This is true even if I save it in a new location.
    - open a 200kb JPEG
    - try to Save As with quality reduced to only 50kb
    - it saves as the original 200kb file

  • Error converting Word 07 files to pdf in Vista

    Hi
    I'm running Vista, Word 07, Acrobat 8.1.2. I don't use acrobat a lot in converting files, last time it was a few months ago.
    I wanted to convert a doc file to pdf but always get this error:
    Adobe could not open the the file because it is unsupported etc etc.
    I tried with docx still the same. but other non office files are ok e.g. jpg, txt, html etc. but not office files, ppt/doc/rtf/docx etc.
    When I try to print to pdf in word, word just freezes & is unresponsive, need to close it. At the bottom of word, it says converting page 1 etc. not stuck.
    I don't really know what to do. Have tried uninstalling/reinstalling, checked this forum for solutions but still the same. Even tried upgrading but still no avail!
    Please help.
    Thanks

    I don't have a printer at home. So can't test if I can print through a physical printer.
    it's kinda strange because it just affects ms office docs/ppt etc. others seem just fine apart from notepad as well. but right clicking say on a jpeg/txt file & convert to pdf is fine.

  • I recently signed up for a one month trial of adobe pro.  I logged in.  I cannot convert a single page of PDF file to word or Excel with this trial.  I just get the request to sign up for a year.  What good is the trial if I can't try it?

    I recently signed up for a one month trial of adobe pro.  I logged in.  I cannot convert a single page of PDF file to word or Excel with this trial.  I just get the request to sign up for a year.  What good is the trial if I can't try it?

    Hey vcomfort6,
    Please ensure that you are using Adobe Acrobat and not Reader to convert PDF file to word or excel.
    Could you tell me whether it is a scanned document? Does this happen with all PDFs or any specific one?
    Do you get any error message? What exactly happens when you try doing the same?
    Hope to hear from you.
    Regards,
    Anubha

  • Unable to convert the multiple PS files to pdf

    Hi
    I have distiller server 8 version we are unable to convert the multiple ps files to pdf.
    Here is the ps code:
    /prun { /mysave save def       % Performs a save before running the PS file
            dup = flush            % Shows name of PS file being run
            RunFile                % Calls built in Distiller procedure
            clear cleardictstack   % Cleans up after PS file
            mysave restore         % Restores save level
    } def
    (H:/705819_test.ps) prun
    (L:/Instruction sheet.ps) prun
    (H:/705820.ps) prun
    When we run this combine ps  through acrobat distiler it is fine, but through distiler server i couldnt get the pdf
    Could any one check and help me.
    Regards,
    Vinoth

    We couldnt convert the ps to pdf via distiller server?

  • Why can't I convert .odt and .doc files to .pdf?

    why doesn't my reader say it can't convert .odt and .doc files to .pdf?

    ...or a subscription to PDF Pack?  See this document for supported file types: http://forums.adobe.com/docs/DOC-1496
    What exactly happens when you try to convert such a doc?

  • Help!How to convert a plenty of doc files to pdf format?

    System: windows xp
    Software: Adobe Acrobat Professional 7.0
    I'm tired of repeatedly click open,convert,save,close to convert a large quantity of doc files to pdf format.Is there any easy way to do this? Is there any kind of plugin or batch command provided to this software?

    Turn off the view in Acrobat option in the Adobe PDF printer and then just drag and drop them on the printer. You may have to figure out where to send them or accept the default, again an option in the printer.

  • Converting .doc file to PDF using Word 2008 - does not convert as is..

    I am trying to convert a .doc file (Word 2008) to a PDF file.  I have tried using the save as function and the print function.  Both will work however everytime 2 things happen:
    1.  The PDF file splits into 2 files (the document is 20 pages long)
    2.  In one area of text, two words are overlapped (in the PDF version) but are not overlapped in the .doc version.
    How do I convert the .doc to a PDF with out these two items occuring?
    Thanks in advance for your help
    T.

    I do not think this is an app but rather a function of MS-Word, the very function that does not work with high fidelity on Mac.  Any document of substance (greater than 10,000 words, imbedded images, figures, tables, or high formatting) will not convert accurately to PDF on Macbook Pro. 
    Using newest MS Office with updated service pacs, and experienced users. This is a puzzling incompetency on the Apple team's side. And there have been no fixes.  One could argue this is a MS problem since the software is theirs.  Probably true, but the problem occurs on Mac platforms, not PC platforms.  Apple can drive improvements.  Not sure Apple customers can.

  • I have an I-Mac 10.4.11 How can I convert my cwk files to pdf or doc files?

    I would like to convert my CWK files into pdf or doc files. How can I do this?

    Hi Herman,
    Is this a G4 iMac?
    Do you have Classic/OS9 installed?
    If so AppleWorks may convert it, & Print2PDF in Clasic or OS9.

Maybe you are looking for

  • Sound issue on iphone 4 - 7.1.1

    My mom has an iphone 4 that was handed down to her from my sister.  After one of the ios updates...can't remember which one...the phone stopped giving audible notifications for text messages.  As I have tried to troubleshoot this issue I have discove

  • Installing Adobe Acrobat X Pro

    Machine crashed and need to install adobe acrobat x pro on new computer.  Entered serial number of xpro anand was prompted for qualifying product.  went to list of products in my account and entered that information but was not accepted.  Need help p

  • Remove charset=utf-8 from HTTP POST

    I'm trying to do a HTTP POST via ABAP.  The application that I'm posting to does not like the "charset=utf-8" that is in the request.  I've been told that I need to remove it.  Does anyone know how to do this?  I'm not setting this field.  SAP is add

  • Dates in BEx query coming into designer as a dimension with Char data type

    This must be an old issue with a well documented work around ...   but alas i can find it ! When i build a universe over a BEx query with dates the universe designer builds them as Dimensions of CHAR type not DATE.  Therefore all WebI date functional

  • Display Same Report Twice in a Page

    Hi I have a report whose size is (hight 5.5 inch, width 8 inch). I want to print the report twice in a paper. The paper size is (hight 11 inch, width 8 inch). I am in the platform of Oracle developer 2000. Please say me what should I do? Farhad