Saving a PDF download

I am trying to save a download using Adobe. I can open the file on my MacBook but can't save it. When I do save it and try to open it again, a window opens telling me
"Adobe Reader could not open 'article2.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded)."
Can someone please help me & tell me if I'm doing something wrong.
many thanks
Teresa

Are you attempting to save the file to a network location instead of your local hard drive? If so, this is probably why you are encountering an issue and why Adobe Drive would be the solution. As we've documented, it is a bad idea to open from or save directly to a network source: Networks, removable media | Photoshop | CS4 and later. Drive can help you get around this by setting up an Adobe supported virtual connection to the network. Thus, if installing Adobe Drive is the solution you need and your need help with installing Drive, please post to the Downloading, Installing, Setting Up forum.
If you are not saving to a network location, then Adobe Drive is not going to be the answer. Then we'll need to know more about the file you are saving.

Similar Messages

  • I downloaded a form and saved as pdf yet cannot attach to email, says in use but all are closed help!

    i downloaded a form and saved as pdf yet cannot attach to email, says in use but all are closed help!

    for the moment you can Forcequit, as Eustace said.
    Really quit a program you do by clicking the menu bar of the program where its name is, on the bottom you see "Quit (appname)"; when it is in the Dock, rightclick it in the Dock and choose "Quit".
    Now about yout attachment: it does not matter what you did to it and where you moved it, as long as Preview is still open it doesn't let it go.

  • Acrobat 10 has stopped saving ANY PDFs, old or new, scanned or downloaded

    Help! Recently my Acrobat 10 has stopped saving ANY PDFs, old or new, scanned or downloaded.  When I try to save a PDF a popup occurs telling me "The document could not be saved. There was a problem reading this document (8)."  What can be done to fix this issue?

    Hi rdabel,
    This is a generic error message, while saving a file which has some corrupt data.
    Can you please open the file, click on 'File - Properties', and under description, please check who is the PDF producer for a sample file.
    Also, please share the exact version of Adobe Acrobat 10 (Help menu - About Adobe Acrobat 10). The latest version of Adobe Acrobat is 10.1.12. You can also try updating your Acrobat to the latest version (Help - Check for updates) to see if that works for you.
    Thanks,
    Aditya Kalania

  • How do you change the default save as directory when saving a PDF file to your hard drive?

    This is the on-line help instructions on this site:
    Downloading a PDF file to your hard drive
    You can download a PDF file to the hard drive from a web page's link. Downloading PDF files doesn't require the ActiveX plug-in file to be installed. (If you want to open and view the PDF file after downloading it, you must have Acrobat, Adobe Reader, or Acrobat Reader installed.)
    To download a PDF file from a link:
    1. Right-click the link to a PDF file, and then choose Save Target As from the pop-up menu.
    2. In the Save As dialog box, select a location on your hard drive, and then click Save.
    My issue:  I want to save several pdf files (from the Adobe Reader in my browser) one at a time and each time it defaults the save as directory to the desktop and I have to go looking for the directory I last saved a pdf file in.  I got lots of directories and I wish I could change the default setting for the save as directory.  Just a minor thing but irritating as other programs usually will allow you to switch the default save as directory to one of your choosing.

    There is not a way to set the default location from all the forums i searched in the last couple days.
    Russ

  • Problem with saving a pdf file to computer. Continually get an error message " This document could not be saved. There was a problem reading this document (21).

    Need advice on a saving file issue. I'm having problem with saving a .pdf file to computer. Continually get an error message " This document could not be saved. There was a problem reading this document (21). This is new as this error message just recently started to pop-up.

    More information about this issue can be found here:
    https://forums.adobe.com/thread/1672655
    A "quick" fix that worked for me was to uninstall Adobe... then download the base install for Adobe Reader 11.0.
    Then download each of the individual updates and run them sequentially. 
    I've installed back up to the last security update which is version 08 and have been able to do normal Save As operations.
    You will have to disable automatic updates in order to stay at version 08 until Adobe resolves this issue in a later release.
    http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Windows
    Adobe Reader 11.0 - Multilingual (MUI) installer    AdbeRdr11000_mui_Std
    Adobe Reader 11.0.01 update - Multilingual (MUI) installer    AdbeRdrUpd11001_MUI.msp
    Adobe Reader 11.0.02 update - All languages    AdbeRdrSecUpd11002.msp
    Adobe Reader 11.0.03 update - Multilingual (MUI) installer    AdbeRdrUpd11003_MUI.msp
    Adobe Reader 11.0.04 update - Multilingual (MUI) installer    AdbeRdrUpd11004_MUI.msp
    Adobe Reader 11.0.05 security update - All languages    AdbeRdrSecUpd11005.msp
    Adobe Reader 11.0.06 update - Multilingual (MUI) installer    AdbeRdrUpd11006_MUI.msp
    Adobe Reader 11.0.07 update - Multilingual (MUI) installer    AdbeRdrUpd11007_MUI.msp
    Adobe Reader 11.0.08 security update - All languages    AdbeRdrSecUpd11008.msp

  • List output to PDF download

    Hi experts,
    Is there other way that a list output screen can be saved in PDF without using spool ?
    I am working on the report that using the code "write: " , and the report output in list. 
    I am searching the solution to save the output list in PDF format to a assigned local or server file, and I don't want to use the spool, bc it needs the program executing is finished, and i want the output list and saving in PDF at the same.
    Maybe like set a button, when clicking the butten, then save the output list screen in PDF to a file. Or just writing in the program, when the list show out , then save to a file in PDF format.
    I am not sure that ABAP supports the function.
    Can anyone help me~~
    Thanks anyway!!   
    Regards
    Claire

    Thanks for your reply, Satyesh.
    I have tried the solution, but I get some trouble.
    Here is my code:
    case sy-ucomm.
          when 'DOWNLOAD'.
             call function 'GUI_DOWNLOAD'
               exporting
                  FILENAME  = p_fname
                  FILETYPE  = 'BIN'
               tables
                 DATA_TAB   = it
             exceptions
                  file_write_error        = 1
                  gui_refuse_filetransfer = 2
                  others                  = 3.
        endcase.
    p_fname = 'C:\test.pdf'.
    I assign the filetype to 'ASC' and 'BIN', but both of them bring the error message and interrupt the program.
    Here is the error analysis:
    The call to the function module "GUI_DOWNLOAD" is incorrect:
    The function module interface allows you to specify only fields
    of a particular type under "FILENAME". The field "P_FNAME" specified here
    has a different field type.
    I am still stuck with it.
    Please suggest me if i am wrong at any point.
    Regards
    Claire

  • Why is my search 1000% slower after re-saving a PDF? (Acrobat 9 Pro Extended)

    I purchased and downloaded the PDF version of "Javascript: the Definitive Guide" (Flanagan, David, O'Reilly Press, 5th Ed., 2006).
    When I first started using the PDF, searches would yield results instantaneously. After making some notations and highlighting some text, I saved the PDF.
    Now searches are ridiculously slow.
    Luckily, I had a backup copy of the PDF in another folder. I re-opened the original and tried my save again: voila! Same instananeous results.
    I thought maybe there had been an embedded index in the PDF, and that re-saving the PDF somehow corrupted or removed it. However, in the original version of the PDF, I can't find anything that indicates why searching is so much faster.
    Any ideas?

    Also, look at your Search preferences. For example, try Ctrl + K > Search > Fast Find
    George

  • I bought several eBooks for Adobe PDF download. Am I able to download with the adobe program that I

    I just purchased a library worth of eBook downloads from the Nonviolent Communication Academy bookstore.  I chose Acrobat PDF download, but do not know how to be sure that the books have been downloaded and saved.  Do I have the Adobe program necessary to contain several eBooks?  Once I close the download page, I cannot have access to it again.  So, now or never.  There is a storm here and with my luck the electricity will go out. Please assist me.

    Which Adobe application are you trying to use?

  • Swf saved as pdf not displaying when opened

    Hi All,
    I am in the process of creating a media kit for my company.  The plan is to be able to send out a link to the pdf file saved in our site files so that potential clients can click and view or download the pdf.  I have saved the pdf in my site files however; when you go to the link (http://www.hobnobtv.com/pdf/hobnobtv-media-kit.pdf) it only opens a white blank pdf file.
    Here are the steps i've taken to create the file:
    I have created the 10page booklet using InDesign CS4 and added the page turn page transition on all the pages.
    I exported the file as swf and then opened the swf in Adobe Acrobat 9 Pro.
    When opening the swf in Acrobat the activation setting I choose are:
    Enable when: The page containing the content is opened
    Disable when: The page containing the content is closed
    Save the pdf file
    Uploaded to the site
    What could be causing the pdf to appear white and blank?  Is there a better way to accomplish the goal?
    I look forward to hearing others thoughts!
    Rebecca

    Thank you for the response!
    Actually, I finally realized (and i'm a little embarassed to admit) that when I click on the link for the pdf, my default program to open the file was set to Preview rather than adobe acrobat or reader.  So now that I have it set to Acrobat I see it ok.
    I have tested the swf file by itself and it does work.  The file uses the Page Turn transition affect, so the user needs to click the bottom right corner of each page to turn (or they can click and drag the page open).  I did notice when the pdf was opend the little note I included in the bottom right of the first page does not show (it reads "click here to turn page"- as a prompt for the user).  I may have to move that up a little bit so it shows.  Also, if you hover over the bottom right corner of the right page, you should start to see the page corner curl, this is hard to see at this point (you can see it great if you click the zoom in option once) Maybe i'll have to reduce the size of the swf when making it a pdf to see if that works so the user doesn't have to adjust the page to see the affect.
    I'll see how that works.
    Rebecca

  • File size pdf download (compressed / expanded)

    Hi all,
    we have a problem with a downloaded PDF file. After a standard process SAP downloads a pdf file onto the server. According to the file attributes the file size is 320 MB. This file should be picked up by another application which will transfer it to the print street for printing that is. However, this application has a file limitation of 50 MB.
    Now, when I pick up the file manually from the server and open it in Adobe Professional and make a local copy of it, it is only 32 MB large. Exactly 10 times smaller than the file on the server.
    Does anyone have an idea what could cause this problem? Is the file 320 MB or only 32 MB? Does Adobe compress the file after opening it which makes it smaller upon saving it locally? Is the file somehow expanded when downloading it to the server?
    Hope to hear from you soon.
    Kind regards,
    Micky,

    Hi
    I believe the problem is on the SAP algorithm to generate a pdf file.
    I've noticed SAP generates a larger file (specially if there is a logo) than Acrobate, I mean the same file would be smaller if it was created directly by acrobate.
    That can explain why the file became smaller after opening and saving by acrobate.
    I had a similar problem with my customer, and the only solution was to place the pdf file from SAP in a particular path where it run acrobate script: this script just only re-saving the pdf file created by SAP
    Max

  • Pdf files not saved as pdfs asnymore!!!!

    hi everyone,
    i have this seriously annoying issue regarding pdf downloaded from firefox , they are automatically saved as text files .
    tried changing properties and update change to similar , still doesnt work . i can still make them run on adobe but my workflow is to combine huge number of files as one . so i have open them individually and save as pdf so i can combine them
    pleaaaaaaaaase help me!!!!!

    Have you Opened FireFox
    Gone  to Firefox menu > Preferences  > Helper Applications
    Next scroll through list and choose Acrobat X or Reader X. Or if you have neither choose Apple's Preview Or download PDF Browser Plugin by Schubert of Germany In stall in The main Library (click on hardrive Icon look for Library), insert plugin in Internet Plugins.
    Caution: If you use Preview on PDF Forms and do anything to any forms it will mangle the forms and make useless.
    Note: IF you use the Schubert PdfBrowser Plugin it does not do Forms. Schubert is leaglly banned from adding Forms support by Adobe.
    Finally try repair permissions.  (Disk Utilities)
    Oh BTW: Please stop shouting . Beside being difficult to read if at normal sized text, All caps is equivelent you shouting at top of your lungs.
    I am assuming your new to the Internet scene and don't know better. Most people ignore post in all caps.

  • FrameMaker 7.0 & Distiller 5.0 - Saving to PDF crashes application

    FrameMaker 7.0p579
    Distiller 5.05
    Windows XP SP2
    Weve been unable to save FM files to PDF. I uninstalled FM, rebooted, reinstalled FM 7, and loaded patches 576, 578, 579. Now we receive this error message, after which the application just shuts down
    Internal Error: 7004, 6055410, 7658227, 0

    Anis-
    1. Since I was the only one to offer Scott an alternative to try printing to a single file with a PostScript Printer added and generating a PDF using Distiller to see if he still was getting error messages, who are you talking about when you said "isn't that exactly what was recommended?"
    2. May I suggest that you re-read your FrameMaker manual and FrameMaker online help as well as review Acrobat online help on PostScript Printers. No were does it say that the only way to generate a PDF is using FrameMaker's "Save Book As...".
    Also no were does it say that a valid PostSCRIPT printer as a Tektronix 550 as I suggested is "inappropriate devices for postscript generation for PDFs" I think Tektronix would certaily question your statement, as would any any ProstScript printer manufacturer.
    There are still service providers that use PostScript printers and RIPs that have PostScript printers set as their default printer. These business still use PostScript files to print with.
    Adobe notes that there are more than 25 oem vendors that distribute PostScript throughout the world, where installations now number more than 20 million.
    If you go to Adobe's web site and search on "PostScript Printers" there are 1780 results. If you do a search on "Postscript Files" there are 9310 results. The first is "Create PostScript Files for Create Adobe pdf Online" and the 4th is"How to Create PostScript Files for Files in a FrameMaker Book".
    Are you trying to tell them not to use their PostScript printers by saying that this "can lead to problems for imageable areas, fonts, colour and transparency, postscript level, resolution, etc.?"
    Here is what Adobe says about Creating PostScript files (This info directly copied from FrameMaker's online help)
    Saving documents and books as Adobe PDF
    You convert a FrameMaker document to Adobe PDF by setting options in the PDF Setup dialog box, and then saving the document as PDF. You can also print the document to a PostScript file, and then convert it. For information on printing to a PostScript file, see "Creating PostScript files" on page 36
    You can create a description of a document called a PostScript file (also called a print file). You might use a PostScript file to download the document later to a PostScript printer or to send the document to a service provider for typesetting. In addition, you can create an Adobe PDF file;...
    Distilling PostScript files manually (Windows, Mac OS, and Sun Solaris)
    If you have Acrobat Distiller installed, you can convert documents to PDF files by creating a PostScript file and then distilling the file yourself. By using Distiller, you can explicitly set some advanced settings having to do with compression, font embedding, and color conversion. However, saving as PDF (see Saving documents and books as Adobe PDF) is often faster and more convenient and produces excellent results. In fact, if you can set up Distiller Job options beforehand, they become available in the Settings section of the PDF Setup dialog box in FrameMaker. Also, if you're working on a platform where Distiller is not available, you can create the PostScript file and then move it to another platform to distill it there.
    To distill a document or book to a PDF file:
    To ensure that Distiller will be able to process the resulting PostScript file, use the latest version of the AdobePS printer driver (installed with FrameMaker) and the Acrobat Distiller PostScript Printer Description (PPD) file. Any other PPD file may be incompatible with Distiller.
    Do one of the following:
    Open a document and choose File > Print. In Mac OS, also choose FrameMaker 7.0 from the pop-up menu below the printer name.
    Open a book and choose File > Print Book or File > Print Selected Files. In Mac OS, also choose FrameMaker 7.0 from the pop-up menu below the printer name.
    Select Generate Acrobat Data to include the settings, and then click PDF Setup and set up the PDF file.

  • Print to PDF - using Snow Leopard (Saving a PDF file when printing is not supported. Instead, choose

    i have a PDF form that i created that is used as a custom proposal that my company sends out to potential clients. the form in its editable state is only used internally. we recently upgraded to snow leopard, but prior to the upgrade, we were able to fill the custom proposal form out using adobe reader, and, as you well know, we weren't able to save that edited document as a PDF with the custom form fields filled out. our work around using adobe reader was to print to a pdf using the adobe pdf printer in the printer dialog. with the addition of snow leopard, however, instead of choosing the adobe pdf printer, we were to choose PDF from the bottom left corner, then Save As PDF, and it would spit out an uneditable pdf that then allowed us to email it to the potential client without them being able to edit it as well as have an internal, digital copy for our records instead of having lots of paper floating around (i know this is also doable using security that disallows the client certain editing privileges, but printing to a pdf is much quicker and more efficient, and the pdf security isn't really that secure at its best).
    in any case, i came across this gem of a post here on the support forums that installs another option from the PDF drop down on the bottom left of the print dialog menu that reads Save As Adobe PDF and is supposed to do exactly what i am trying to get it to do...print to a pdf file from adobe reader.
    http://kb2.adobe.com/cps/509/cpsid_50981.html    
    once i updated to acrobat 9.2 (as the link above suggests 9.1), however, the Save As Adobe PDF does appear in the print dialog menu, but it still gives me the same error that acrobat 8 - 9 gave me while using Snow Leopard — Saving a PDF file when printing is not supported. Instead, choose File > Save — and as i've already explained, you can't save an edited pdf form in reader (as i am the only one in the office with acrobat) and still keep the fields as you've entered them in. the only work around is to print to a pdf but is apparently having some recent problems.
    using acrobat, however, i know that i can save the editable pdf as a new file with the fields customized as i have left them, but it still saves it as an editable pdf and the print to a pdf option still remains the best option...that way we have digital copies internally that are uneditable that can be printed at any time or emailed to the client.
    how can i do print to a pdf, based on what i've written above, using snow leopard and acrobat and reader?

    A simple way is to flatten the form fields, which converts the field appearances to regular page contents. You can do this with JavaScript or PDF Optimizer (Advanced > PDF Optimizer > Discard Objects > Flatten form fields). A very nice script that adds a custom menu item can be found here: http://www.uvsar.com/projects/acrobat/flattener/

  • I saved a PDF doc in adobe and then added text to the form. But every time I try an email it it only

    I saved a PDF doc in adobe and then added text to the form. But every time I try an email it it only sends the original form without text. Once I've changed a doc in Adobe, how can I save it so that I'm able to use it with added text and notes? Also, I'm using a new iPad.

    If you are using those apps or websites, they are likely viewing the PDF using iOS' built in PDF previewing, which will not show annotations and markup to the PDF. We have informed Apple of this issue, but do not have any insight into whether or when they will fix it.
    Regarding the qustion about importing pictures, Adobe Reader does not provide any capabilities to import pictures into a PDF. To do this, you'll need to use Acrobat, available on your desktop computer.

  • Can I print web pages from firefox using adobe pro 9 (Not using PDF download) and if so how

    Can I print web pages from Firefox 3.6.12 using adobe pro 9 (not using PDF Download) and if so how.

    {Ctrl + P} - do you have a PDF Printer listed in the Printer - Name drop-down?

Maybe you are looking for

  • There was an error downloading this update. Please quit and try again later. Error Code: U43M1D219

    For the past 2-3 months - everytime Adobe Application Manager runs to update my CS 5 applications; it fails giving this error: There was an error downloading this update. Please quit and try again later. Error Code: U43M1D219 Then a screen Stating -

  • Mailbox for Text messages

    Hi, i have a E51 that i just want to use without email. can i set it up in such a way that when i press the mail button i access my text messages as opposed to any emails? i don't want email access on this phone. thanks for your help

  • JMS Exception when server goes down (Urgent) ?

    Hi All, I have three topics in the JMS Server which is on the top of Web logic server 8.1. On the client side I have Swing thick cleint.For each topic I have a listener. When the web logic server goes down ( I shut down manually ) Only one listener i

  • How do I solve Error 1004 on Lion reinstall?

    I wanted to erase my hard drive and reinstall the system and the apps I primarily use. I followed the instructions from apple, but after I sign in with my ID and password I get the Error 1004 and "try again later". Starting to panic a bit because I d

  • Cannot sync Keychain with MobileMe - password not accepted

    I have installed SL twice after talking with Apple Support. On my MacBook Pro, immediately after installing SL I received a message to input the master Keychain password for my MacBook Pro. I had never see this message before installing SL. I never h