Source file of po pdf document

Hi,
I wanted to find the source file when I print the document from releases using Tools->View Document (or) Inquirty->View Document.
Can some please helpe me in this.
Thanks,
mvgr.

After updating the Word file create a new PDF from it. Open the old one (with the fields) and use the Replace Pages command to replace the pages of the old file with those from the new one. This will keep the fields in tact and you'll have a version with the new pages and the old fields.

Similar Messages

  • I am getting this response when I am trying to open a file: Before viewing PDF documents in this browser you must launch Adobe Reader and accept the End User License Agreement, then Quit and relaunch the browser."  What do I do?

    I am getting this response when I am trying to open a file: Before viewing PDF documents in this browser you must launch Adobe Reader and accept the End User License Agreement, then Quit and relaunch the browser.”  What do I do?  I have opened this up in the past without a problem. 

    Back up all data.
    If Adobe Reader or Acrobat is installed, there should be a setting in its preferences such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected. Otherwise do as follows.
    Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present. The same goes for a plugin called "iGetter," and perhaps others.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Convert virtually any CAD file into a PDF document .

    Can Acrobat X Pro Convert virtually any CAD file into a PDF document using templates?
    Earlier Acrobat 9 Pro Extended used to be ?

    In the latest version of Acrobat the grammer was added to allow embedding a swf file. Unfortunately the Designer (the tools for getting the swf in there) lags behind and will be there in a future release. So if you really want this you must do it by hand and it will only work in Acrobat/Reader 10.
    Here is a blog entry that describes how to do it:
    http://blogs.adobe.com/formfeed/2010/12/flash-in-xfa-sample-column-chart.html
    Paul

  • What version of adobe acrobat do I need to combine mutilple pdf files into one PDF document?

    What version of adobe acrobat do I need to combine mutilple pdf files into one PDF document? I am wanting to know if Adobe Acrobat Standard XI can combine multiple PDFs for do I need to stick with Adobe Acrobat Professional XI?

    Acrobat Standard can combine PDF files.

  • How does one copy a PDF file into another PDF document?

    I am trying to copy part of a PDF file into another PDF document. So far, the file will copy but will not paste into another PDF document. Any clues?

    You can't convert Photoshop to editiable InDesign (though there is a plugin from RecoSoft that claims to make editable ID files from PDF: http://www.recosoft.com/products/pdf2id/).
    About the best you can hope for is to leave pixel information in the Photoshop file (where it really belongs) and place that into an ID document, then set any type in ID.
    Peter

  • How to edit the source file of a PDF form?

    Hi,
    I used a Word doc as a base to create a PDF form and have added many fields to it using Adobe X Pro.
    Now, i have to change some of the text in the Word doc. Therefore I would like to change the Word. doc and reupload it as the source file for the form.
    How can I do this?
    thanks in advance!
    regards, Laurie

    After updating the Word file create a new PDF from it. Open the old one (with the fields) and use the Replace Pages command to replace the pages of the old file with those from the new one. This will keep the fields in tact and you'll have a version with the new pages and the old fields.

  • Highlight File Format and PDF Documents with Chinese and English characters

    I'm a developer working on an application that makes use of the Highlight File Format / external highlight server capabilities of Adobe Reader.
    The highlighting worked correctly until we started to introduce pdf documents that were scanned to recognize Chinese in addition to English.
    The xml file seems to have the correct values in it. For example, if the 10 characters to highlight are at position 41 on the first page. The "xml" file has the <loc pg=0 pos=41 len=10>.
    If the document is scanned for English only, it works fine. That is, the highlight starts at character 41. If the same document is scanned for Chinese and English, the highlight starts at character 22.
    Has anyone had a similar experience? Do you know a solution?

    Hi,
    I don't know about BIP and the specifics of your context, but here are some general answers for the XLIFF format:
    <?xml version = '1.0' encoding = 'utf-8'?>
    Can we change encoding to 'ISO-8859-1' as soon as we convert the file format ?If you also save the file to ISO-8859-1 as well yes. But you can do this only for languages supported by Latin-1. It makes sense to keep the files in UTF-8.
    A-2) he section <header><skl><internal-file> contains a huge string
    which seeem to be binary ... What is this ? can we delete it ?That's likely to be the skeleton file. The data used to rebuild the original format after translation.
    Most likely it should stay there.
    A-3) Can we have one XLF file with muliple <file> sections (one per language to translate to ) ?
    This can be very useful for us to manage one only translation file per report template.Yes but no: yves you can have several <file> elements in an XLIFF document, but no: they must be for the same language pair. XLIFF is designed to work with bi-lingual files, not multi-lingual files.
    A-4) the most important section for translation is included in the <trans-unit> tag .
    Each one has a distinct id like ""49e41f8f" ... Can we replace this by a more meaningfull value ?Those id attributes are used by the filter to merge back the data after translation. You should preserve them.
    A-5) the language format is like "en-US" (language code + territory code).
    Is it case sensitive ? No it is not case-sensitive (en-us == en-US). The values of xml:lang are not case sensitive (unlike other XML attribute values).
    en-US is just the recommended notation.
    The XLIFF specification are here:
    http://docs.oasis-open.org/xliff/xliff-core/xliff-core.html
    Hope this helps,
    -ys

  • Open Data Object -  Open File attachment within pdf document

    I am trying to build a script which will open file attachments embedded in a pdf document.
    I have used the following javascript to list all embedded files within a document so I can retrieve the name
    var d = this.dataObjects;
    for (var i = 0; i < d.length; i++)
    console.println("Data Object[" + i + "]=" + d[i].name);
    The console reported:
    Data Object[0]=MTP-300-X-1210_A.pdf
    Data Object[1]=MTP-300-X-1240_A.pdf
    I then used the following script to open the file     
    this.openDataObject("MTP-300-X-1210_A.pdf");
    Console reports back as follows and does not open the file:
    [object Doc]
    Can anyone please offer assistance in how to open an embedded pdf attachment within a document?
    Many thanks!

    Hi George,
    I have used the same method app.openDoc to open attachments using a path associated with my computer.  However, as you know, the method does not work if the pdf containing the attachment is located on a different computer.  The app.openDoc method throws an error becuase the path is not valid.
    I am trying to get the following code to work with no success:
    var cFilePath = "|" + this.path + "|U:photo.pdf"';   // photo.pdf is the attachment
    app.openDoc ({cPath: cFilePath});
    The debugger throws an error.
    However, if I take the content of the variable cFilepath and instert it as an argument within cPath parameter as a string literal, the app.openDoc method returns the docObject.
    What's going on here?  shouldn't the variable cFilePath work?  Or do I need to specify a data type for the variable?  Any thoughts would be helpful.  I am using Windows 7, Adobe Acrobat X Standard.

  • How do you import a psd file to a pdf document ?

    I have a pdf template document for artwork to be printed on a CD for duplication, how do I import the artwork from Photoshop to the pdf document ?

    Hmm. What I would do then is start a new InDesign document and first place the template. Put it on its own layer. Then start placing things over the template, sizing carefully; adding text captions and blocks until it is done.
    If it is a set of guides, not for printing, you could then hide the template layer.
    If you have made text in Photoshop, be very wary, the chances of illegible text is very high indeed.

  • How do I reattach missing AI files using a PDF document

    Thanks in advance for reading this!
    I am converting an InDesign document to ePub and mobi. The document also exists as a PDF file (which, as you may know, can not be converted effectively to ePub).
    The InDesign file has been supplied to me with missing .ai links for charts and graphs. There are lo-res  images in their places.
    I could manually import individual charts from the PDF file  into Illustrator, but there are dozens of them and relinking will be a huge job as it is. Any suggestions on how to transform all charts and graphs in the PDF file to .ai files OR import them directly into InDesign?
    Many thanks

    You print to the Adobe PDF printer. AA X was substantially modified to meet the newer needs of OFFICE 2007 and 2010, making PDF Maker incompatible with OFFICE 2003. You should still be able to print just fine, but the features you may want will not be available unless you upgrade MS too.

  • Using external font file in a  pdf document

    Hello,
    I try to create programmatically a pdf file which whould use an external ttf file. Right now my soft generates something like this:
    3 0 obj
    <</Type /Pages/Count 1/Kids[5 0 R ]/Resources<</Font<</F1 7 0 R>>>>>>
    endobj
    7 0 obj
    <</Type /Font/Subtype /Type0/Encoding /Identity-H/BaseFont /TimesNewRomanPSMT/DescendantFonts [8 0 R]>>
    endobj
    8 0 obj
    <</Type /Font/Subtype /CIDFontType2/BaseFont /TimesNewRomanPSMT/CIDToGIDMap /Identity/FontDescriptor 9 0 R/DW 1000/W [1[722]2[610]3[443]4[389]5[277]0[777]]/CIDSystemInfo <</Ordering (Identity)/Registry (Adobe)/Supplement 0>>>>
    endobj
    9 0 obj
    <</Type /FontDescriptor/FontName /TimesNewRomanPSMT/StemV 80/Descent -216/Ascent 891/CapHeight 662/Flags 32/ItalicAngle 0/FontBBox [-568 -306 2000 1007]/FontFile2 10 0 R>>
    endobj
    10 0 obj
    <</Length 13 0 R/Length1 13 0 R/Filter /FlateDecode /F times.ttf>>stream
    endstream
    endobj
    13 0 obj
    836380
    endobj
    The times.ttf is in the same folder as a pdf. The document opens without error though the rendered text is completely different from that it suppose to be. I didn't find a good exemple in PDF spec and probably I intrepret it in a wrong way. I would be very thankful for any clue what is wrong in my code or a sample how could it be done correctly.
    thanks in advance

    From the snippet you posted, it appears that you didn't properly write out the value of the /F key in the stream. 
    However, that's just one of the reasons this won't work as you are expecting.  Even after you fix that, you should know that Adobe Acrobat & Reader have their support for external streams turned OFF by default (for security reasons) and that other viewers don't even support it at all.
    Is there a reason you don't wish to embed the font?  Or use standard referencing?

  • Attaching large amounts of text as either a file or or pdf document.

    Good Evening!
    I would like to attach a file (.txt, .rtf, .doc, or .pdf) to provide additional information to a database record. I'm wondering what is the most efficient way to do this. It would also be nice to be able to search the document. I know that I can attache "key worlds" to the document, but I would prefer to actually be able to search the content.
    Any Suggestions?
    Thanks,
    Charles

    Hi charles,
    have a look at this link
    http://download.oracle.com/docs/cd/E10513_01/doc/appdev.310/e10497/up_dn_files.htm#CJAHDJDA
    hope you got it..
    bye
    Srikavi

  • How to reduce file size of pdf documents from 12 mb to 4 mb

    i am trying to reduce file size at adobe reader original document size is 12 mb i need to get it down to 4 mb , please help how

    You might be asking for the impossible or the easy. Acrobat Pro can reduce the size of PDF files, but nobody can promise any particular PDF can shrink.

  • Adobe reader XI can't open mp3 files in a pdf document- says the required decoder not installed

    Adobe reader XI can't open mp3 file links contained in a pdf - it says the required decoder is not installed
    please help!

    This is not a function of Reader, but that your computer does not seem to be configured to play mp3 files. Try fixing your file associations. The method of doing so depends upon your OS and it version number.

  • Combining files into single PDF document

    I recently downloaded an adobe acrobat update and now, every time I try to combing files into a single PDF, I get an error message stating that the PDF could not be created due to an unknown error.  I had no problems prior to downloading the update.  I need this fixed because I have to combine PDF files for school.

    Hello,
    Please check if you are able to combining any other set of files. This issue could be related to particular files only.
    Regards,
    Anoop

Maybe you are looking for