Convert pagemaker file to PDF error message

I have a pagemaker file created in Pagemaker 7 which I own. I want to save it as a PDF file. when i select export and then Adobe PDF I get an error message : "cannot register Plug in. Please reinstall the plus in component" I have my PM7 disc.Does this mean I will have to reinstall the entie program?

andir10621923 wrote:
It stinks that they stop supporting it.
The last version of PM was July 2001, all development stopped in 2004 and all support ceased in August 2010.
After InDesign (Pagemaker 8?) came on stream in around 2000, there were several years of heavily discounted upgrades for PM users.
So it's not as if it's just happened.

Similar Messages

  • Error converting Pagemaker file to PDF

    Hi there,
    I've been trying endlessly to convert an Adobe PageMaker 7.0  file to PDF. I've followed the process of "click on File, and then Export to PDF"; however, during the conversion process, an error message always pops up:
    "When you create a PDF file, you have to send the host fonts. Please go to the Acrobat distiller printer properties, 'Adobe PDF settings page' and turn off the option "Don't send fonts to Distiller."
    I've searched tirelessly where this option can be found and unchecked, but it seems elusive.
    Can you help with this please?
    Thank you.

    Hello,
    Thanks for posting. Unfortunately, at this time Acrobat.com doesn't support the conversion of Pagemaker files to PDF. For a list of supported formats, please see our help page on converting to PDF:
    http://help.adobe.com/en_US/Acrobat.com/Using/WS4c4da310f3b0910a64131dac123f400852b-8000.h tml
    What you're trying to do is possible with the desktop version of Acrobat; if this is an urgent need and you don't currently have a copy of Acrobat, I would try downloading a free 30-day trial version here:
    http://www.adobe.com/products/acrobatpro/tryout.html
    I hope this is helpful!

  • Converting .pptx file to .pdf Error...... Please Help!?

    I am trying to convert a relatively large powerpoint 2007 presentation into a pdf document using the - right click> Convert to Adobe PDF - function.
    I have only managed to carry this out on one file so I know it can work, but refuses to convert any other presentation. They are all of similar size containing both pictures and text.
    I have enabled macros and active x within powerpoint, but still have trouble. Has anyone else had this problem?
    Liam

    Thank you for all your intrest.
    The error message I get is... "an unexpected error occured. PDFMaker was unable to process the request".
    When I then try to convert again, the system opens the ppt, but then does not do anything, and the error message does not show, for all presentations I try to convert.
    I have also tried using the ribbon, but the button does not do anything once I have clicked.
    I can print to PDF, but this provides an output which is not suitable, because it shows as if it each slide was printed on to paper and then put in PDF.
    I have also uninstalled and reinstalled Acrobat to make sure nothing was corrupt.

  • Error: EXOpenExport() while converting xlsb file to PDF

    I am getting this error while converting .XLSB file to PDF using IBR :Step PDFExport forced conversion failure by conversion engine because of error: EXOpenExport() failed: no filter available for this file type (0x0004). Can anyone tell me how to resolve this issue.
    Thanks in advance.

    Thank you for all your intrest.
    The error message I get is... "an unexpected error occured. PDFMaker was unable to process the request".
    When I then try to convert again, the system opens the ppt, but then does not do anything, and the error message does not show, for all presentations I try to convert.
    I have also tried using the ribbon, but the button does not do anything once I have clicked.
    I can print to PDF, but this provides an output which is not suitable, because it shows as if it each slide was printed on to paper and then put in PDF.
    I have also uninstalled and reinstalled Acrobat to make sure nothing was corrupt.

  • My operating system is Windows XP SP3.  I have Adobe 11.0.08 installed.  I cannot print a pdf file/document. Error message - AeroRd32.exe - Unable To Locate Component  -  "Application failed to start because lxdautil.dll not found."  Any suggestions?

    My operating system is Windows XP SP3.  I have Adobe 11.0.08 installed.  I cannot print a pdf file/document. Error message - AeroRd32.exe - Unable To Locate Component  -  "Application failed to start because lxdautil.dll not found."  Any suggestions?

    That DLL is part of your printer driver; reinstall or update the device driver for your printer, and the message should go away.

  • I purchased the Adobe PDF Pack but it won't allow me to convert any files to pdf or combine multiple files to into 1 pdf form. It keeps saying "Error occurred while trying to access the file". WHY

    I purchased the Adobe PDF Pack for $7.50/month (or $89.99/yr) but it won't allow me to convert any files to pdf or combine multiple files into 1 pdf form. It keeps saying "An error occurred while trying to access the service". WHY is this happening & How can I fix it?

    Hi hpmg,
    It seems you are trying to access the service via Adobe Reader. Make sure you are signed in with your Adobe ID. Is Reader updated to the latest patch v 11.0.09?
    It might be possible that a firewall or antivirus might be breaking the connectivity from Reader to the server.
    Try accessing the service from the browser: https://cloud.acrobat.com/exportpdf  and check if that works for you.
    Regards,
    Rave

  • Acrobat XI Pro successfully installed, but it failed in converting word files into PDF, why?

    I just installed Adobe XI Pro through the download assistant, it looks the installation went well, but when I tried to convert word files into PDF (tried many times), it failed. Anyone has the same problems, any solutions?

    Please reply with more information - what your operating system is, do you have Office installed, and what exactly is happening. Is there an error message, does the application crash, and from where are you starting the conversion (using Word and PDFMaker, using Acrobat's Create button, or batch processing).

  • How to batch convert Word files to pdf

    How do I batch convert Word files to pdf using Automator

    Here is a drag/drop AppleScript solution that uses the command-line LibreOffice capability to convert MS Word (.doc, .docx) files into PDF. Drag/Drop a single file, or a folder of Word documents, and it will write the respective PDF back to the original file location. When it is done, an OS X Notification will slide out onto the Desktop and provide the count of processed files.
    Save this AppleScript as a Desktop application that remains open after running. If you ignore the latter, the notification will not show when it is done. Tested on Mavericks 10.9.5.
    property name_extension : {"doc", "docx"}
    global fileCnt
    on open of finderObjects
        set fileCnt to 0
        repeat with i in (finderObjects)
        if folder of (info for i) is true then
            tell application "Finder" to set temp to (entire contents of i)
            repeat with j in (temp)
                process_files(j)
            end repeat
        else
              process_files(i)
        end if
        end repeat
        display notification "Processed Files: " & fileCnt with title "Word2PDF" subtitle "Processing Complete"
    end open
    on process_files(fname)
         set cmd to "/Applications/LibreOffice.app/Contents/MacOS/soffice "
         set cmdArgs to "--headless --convert-to pdf:writer_pdf_Export --outdir "
         tell application "Finder"
              set nameExt to name extension of fname
              set outDir to do shell script "dirname " & POSIX path of (fname as alias)
              if name extension of fname is in name_extension then
                   try
                        do shell script cmd & cmdArgs & outDir & space & POSIX path of (fname as alias)
                        set fileCnt to fileCnt + 1
                   on error errorMessage number errorNumber
                        display alert "Processing Error: " message "[ " & errorNumber & " ] " & errorMessage
                        error number -128
                   end try
              end if
         end tell
         return
    end process_files

  • I can't convert my files to pdf

    I have not been able to convert my files to pdf documents since last Friday.  Is there a problem with my account or is adobe having an issue?

    Hi Sue Purcell,
    I am not aware of any system outages. Are you receiving an error message when you try to convert? If so, what is that error? Please provide specific details about the problem you're experiencing, and we will try to get it sorted out for you.
    Best,
    Sara

  • When I converted a file from PDF to WORD.DOC it opened as Read Only and I'm unable to alter any of the text.  How can I solve this problem?

    When I tried to convert a file from PDF to WORD.DOC it opened as Read Only and I'm unable to alter any of the text.  How do I solve this problem?  I don't know how to change it from Read Only.

    Dear Sara
    Thank you very much for sending the converted file.  Yes, I am able to edit it - that will be very useful to me and I appreciate your help.
    Referring to your previous message when you said you'd converted via Acrobat and not Acrobat.com, I'm converting via Acrobat.com because that's the only option that is shown (how do I convert via Acrobat? - perhaps that would be more successful).  I'm using the Export PDF website, and the OCR is enabled to "Recognize text in English UK".  However, I've just tried converting a different LPA pdf form, this time for Health & Welfare https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/245571/LPA114_He alth_welfare_LPA.pdf and again I have the same problem as before.  I've altered it from "Read only" and thought I'd then be able to enter text, but "Drawing Tools" is shown in the pane and I'm unable to enter anything onto the form - everything appears to be in images.  Also, the lettering on the heading of' page 1 has become jumbled, with the word "Public" overlaying the word "Guardian."  Any suggestions as to what it is I'm doing wrong would be welcome - I don't like to be beaten!
    Regards,
    Judith.

  • About converting a file into PDF

    why an error always occur when converting a file into pdf ?

    oceanblue1968 wrote:
    why an error always occur when converting a file into pdf ?
    Why is, when I just missed my train, the next train always late? (sigh)

  • How to convert *.pmd files to *.pdf files?

    How to convert *.pmd files to *.pdf files?

    Depends on your setup. Please give full details; messages here are not charged by the word.

  • Unable to convert text file to PDF

    Hi,
    Using Adobe Pro 9 Distiller on Windows 2008 64bit server. So far using Distiller to convert .eps files to .pdf with Standard job options file. I need to convert a .txt file to .pdf and am not able to convert using any of the OOTB job options settings that came with Distiller product installation.
    Below is the Distiller output when I tried with Standard job options settings
    %%[ Error: undefined; OffendingCommand: MBLDxxxx-03.rpt ]%%
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    Can anyone please provide me settings or job options file settings to convert reports in text format to PDF? Thanks in advance.

    Thanks for the quick response. I was able to generate the PDF using the Adobe PDF writer by opening the text file. Not an issue on 64 bit platform. The .NET application using Distiller to convert eps to PDF via Distiller and moves it over to a watch folder. Another application picks it up and bursts the large PDF to individual PDFs. I need to automatically convert txt to PDF and submit it for burst. Looking for ways to leverage Distiller to automatically convert the txt to PDF. Is it possible? Thanks.

  • Convert txt file to pdf using Acrobat Distiller

    Hi,
    We purchase years ago Distiller 8.1.0.
    Now, I try to convert txt file to pdf files, but I always get an error.
    Please Help,
    Hezi

    I have important information: Acrobat is not licensed for use server side, so you must not use it to build that solution, even if it is technically possible.
    Adobe's server side PDF creation product is LiveCycle PDF Generator https://www.adobe.com/sea/products/server/pdfgenerator/
    This comes in three editions. The "PostScript" edition is little more than a server-side version of Distiller, and will not convert TXT. However, the other two editions can convert a wide variety of formats.

  • Cannot convert .tif file to .pdf in IE when I have an Abode Reader window open

    Cannot convert .tif file to .pdf in IE when I have an Abode Reader window open.

    Cannot convert .tif file to .pdf in IE when I have an Abode Reader window open. 
    I have a .pdf file open in Adobe Reader that is on my works P:/ drive. Then I open a .tif file from a website in Windows Phone and Fax Viewer and  Right click it and select "Convert to Adobe PDF".  I get the following message
    Adobe Reader could not open "filename.tif" because it is either not a supported file type or because the file has not been damaged (For example, it was sent as a an email attachment and wasn't correctly decoded).
    I have a work around for this.  Simply closing the Adobe Reader that was previously opened and the attempting to "Convert to Adobe PDF" will then work properly.  Was wondering if there was a fix to this issue beacuse it is frustrating to always have to close my other .pdf files to do this action.
    Any help will be greatly appreciated.

Maybe you are looking for

  • Acrobat 8 Professional on WINDOWS 8

    When installing Adobe Acrobat 8 Professional on WINDOWS 8, I get the following error message: "The file 'AdobePDF.dll' on Windows Vista CD-ROM is needed. Type the path where the file is located, and then click OK." Question: Where can I find the 'Ado

  • Emoji no longer works since upgrading to iOS7.

    I'm having a weird problem ever since I upgraded to iOS7. For some reason, my emoji no longer works. It works parially. When I hit the globe on the keyboard, I can see them all and choose which one I want to send, but I can no longer type ":)" to get

  • Is it too late for me to upgrade?

    Overview: I bought my MacBook (13.3 inch, Black) late June of 2007, making it a little over 5 years old. My OS X is currently 10.4.11 and hasn't been upgraded in, obviously, years. Of course it annoyed me that I couldn't download certain things or up

  • How to control text for PDF Files in the BI7.0 Broadcaster

    Hi , I am running a web template in the BI7.0 Broadcaster. The output prints in the PDF format. In the precalculation tab I have set up 4 variables(VAR1,VAR2 .. etc) . The main folder where these PDF files get stored I can control the text but dont k

  • What to do after moving library accidentally, then trying to move it back?

    A few months ago I somehow accidentally moved my iPhoto library to my desktop.  I left it there because I didn't know where it was supposed to go, and continued adding photos during that time which worked just fine. But then just now I tried to move