Why cannot I copy selected text from a pdf file opened in Adobe Reader XI?

Hi all,
I had a problem when I tried to copy some selected text on a pdf file([Linux.System.Programming(2nd,2013.5)].Robert.Love.文字版.pdf) , which was opened in Adobe Reader XI as below (non-English version):
The error's text could be primarily translated as "An error occured when copied to clipboard. Internal Error." I'm not sure about the reason of this. I guess it is a problem or bug related to operating system or Adobe Reader XI. I had this problem when I used other versions of Adobe Reader though I cannot remember the exact number of versions now.
The version of XI I'm using is 11.0.0.  The operating system is XP SP3.
As I was writing this question, the problem disappeared and I cannot reproduce it again now.
Could anyone help explain why the error message appearred or why the problem disappearred? If there is referrence provided, that would be finer. Thank you.
Message was edited by: photonxp

The document has been protected.
Even if it doesn't have a password, the original author has applied "plagiarism" prevention to it.
There is a program from Wondershare, called PDF Password remover, that will remove such restrictions, but I'm not allowed to recommend it, only to point out it's existence.

Similar Messages

  • Using browser javascript to copy selected text from a pdf file opened in Air app.

    I have posted this question on reader forum as well, but I think it is more suited here...
    I am trying to create a note-taking application in air. I want to extract selected text from pdf file as a string object or to the clipboard.
    Obviously, all pdfs in my local storage will not be scripted to recieve postMessages and act accordingly, and that is not practical either. So, my problem is, how can I copy the selected text in the pdf file (opened as an object in htmlloader within my Air app) to clipboard or directly in another control by say clicking a button in air application? I suppose, this is possible using javascript, however, I don't know which reader methods are exposed to the wrapper htmlloader control. In short, I want to execute app.execMenuItem("Copy") command through htmlloader javascript. Any alternate solutions are also welcome.
    This is similar to passing inbuilt commands/methods/functions (of adobe reader) to pdf-reader plugin embedded in a webpage via javascript. This is possible in IE where the pdf is rendered as activex object, and hence JSObject interface of pdf document/reader is accessible to the browser javascript. I have also read that this same JSObject is accessible to VB as interface for IAC, so as the Air is Adobe's own product, I was wondering if equivalent of JSObject is accessible to htmlloader control as well.
    Thanks in advance...
    Mits

    Thank you Thom for your reply...
    from
    http://www.adobe.com/devnet/acrobat/javascript.html
    ...Through JavaScript extensions, the viewer application and its plug-ins expose much of their functionality to document authors, form designers, and plug-in developers...
    As it is explicitly mentioned, that the functionality of adobe reader are exposed for plugin development, I thought someone here might have used external javascript to execute some safe methods in adobe reader. The functionality (i.e. external javascript interface-JSObject) is already available for VB programmers to develop IAC. Further, the Acrobat SDK example called "AcroPDFinHML" shows how one can embed a pdf-reader in a html page and execute some safe methods (like gotonextpage(), zooming etc.) in IE as ActiveX plugin. I have checked it myself for adobe reader 9, and it works perfectly, so there is no security issue as such to implement the same for another browser (like in my case, the htmlloader control in flex/air app).
    I intend to create a note taking application in air, where it is very much required that I should be able to copy selected text from various pdf documents, that are open in my app, and subsequently paste/collect/save the collected notes and process them afterwords (offcourse, from the pdfs that allow me copying text). However, it is not happening for me here. As the pdfs are opened through adobe reader plugin, it does not register the copy command executed by my air app. It registers the system level copy command (by keyboard shortcut Ctrl+C), but my air app has no way to execute the system level copy command programmatically. So I am kind of stuck here...
    Thanks again for your reply. Having known what am I intend to accomplish, any other (may be alternative) solutions will be appreciated nonetheless...
    Mits

  • Adding Text to a PDF I opened in Adobe Reader

    ...my question sounds simple but I can't figure out what to do. I have some architect drawings that are PDFs. I need to add some text to them and then resave them as PDFs and I can't make this happen. I opened then in Photoshop Elements but it won't let me resave as a PDF, only as a JPEG, TIFF, PDD etc. Please help if you can. I have other Software like Microsoft Office and Desktop PDF but can't figure this out. Any help would be appreciated.
    Thanks, Bruce

    Yes. You could do it with Adobe Acrobat. There are a few different ways to do it depending on the results you want.
    The best solution would be to edit the original files but if you don't have that option, Adobe Acrobat wold work.

  • How to extract text from a PDF file?

    Hello Suners,
    i need to know how to extract text from a pdf file?
    does anyone know what is the character encoding in pdf file, when i use an input stream to read the file it gives encrypted characters not the original text in the file.
    is there any procedures i should do while reading a pdf file,
    File f=new File("D:/File.pdf");
                   FileReader fr=new FileReader(f);
                   BufferedReader br=new BufferedReader(fr);
                   String s=br.readLine();any help will be deeply appreciated.

    jverd wrote:
    First, you set i once, and then loop without ever changing it. So your loop body will execute either 0 times or infinitely many times, writing the same byte every time. Actually, maybe it'll execute once and then throw an ArrayIndexOutOfBoundsException. That's basic java looping, and you're going to need a firm grip on that before you try to do anything as advanced as PDF reading. the case.oops you are absolutely right that was a silly mistake to forget that,
    Second, what do the docs for getPageContent say? Do they say that it simply gives you the text on the page as if the thing were a simple text doc? I'd be surprised if that's the case.getPageContent return array of bytes so the question will be:
    how to get text from this array? i was thinking of :
        private void jButton1_actionPerformed(ActionEvent e) {
            PdfReader read;
            StringBuffer buff=new StringBuffer();
            try {
                read = new PdfReader("d:/getjobid2727.pdf");
                read.getMetaData();
                byte[] data=read.getPageContent(1);
                int i=0;
                while(i>-1){ 
                    buff.append(data);
    i++;
    String str=buff.toString();
    FileOutputStream fos = new FileOutputStream("D:/test.txt");
    Writer out = new OutputStreamWriter(fos, "UTF8");
    out.write(str);
    out.close();
    read.close();
    } catch (Exception f) {
    f.printStackTrace();
    "D:/test.txt"  hasn't been created!! when i ran the program,
    is my steps right?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to extract text from a PDF file using php?

    How to extract text from a PDF file using php?
    thanks
    fabio

    > Do you know of any other way this can be done?
    There are many ways. But this out of scope of this forum. You can try this forum: http://forum.planetpdf.com/

  • Why is it I do not get an option to open in adobe reader from safari.      by

    Why is it I do not get an option to open in adobe reader from safari?

    Try tapping the pdf and pressing "open in". This should allow you to open your pdf in reader. Let me know if this does not work for you.

  • How can i extract the text from the PDF files,Power point files,Word files?

    hi friends,
    i need to extract text from the PDF files,Power Point,Ms word files.Is it possible with java?if yes how can i extract text from those files.please give solution this problem.i would be thankful if u provide solution.
    regards,
    prakash.

    Find an API which could read each of those files and start coding.

  • Why do old Adobe PDF files which I attach to a document show as Firefox files instead of an Adobe PDF file after an Adobe Reader update??

    Why do old Adobe PDF files which I attach to a document show as Firefox documents in my files instead of an Adobe PDF file after an Adobe Reader update?  My saved files Adobe PDF documents also appear as Firefox documents instead of Adobe PDF files.

    NO MATTER WHAT VERSION OF WINDOWS YOU'RE USING:
    Right click one of the PDFs with the Word icon.
    Select "Properties"
    Where it says "Opens With" there is a button to change it from Word to Adobe Reader, which should be in the list of available programs that pops up.
    Choose Reader, and click APPLY before clicking OK.
    That will change ALL PDFs to Reader as the default application.

  • ?? I cannot open PDF files ?? Adobe Reader 8, Windows Vista, Firefox Browser ?? help ??

    ?? I cannot open PDF files ?? Adobe Reader 8, Windows Vista, Firefox Browser ?? help ??

    Why the question marks? Can you open PDF files or not? You don't need Firefox to open PDF files.

  • PDFs saved from Safari won't open in Adobe Reader

    PDFs saved from Safari won't open in Adobe Reader - damaged file
    iMac late 2009 8Gb 3.06 Intel Core 2 Duo - Safari 6

    I encountered the same problem and tried doing what Suzanne did by right clicking the file and saving it to the computer first and then opening it.
    And then after double clicking the saved file windows prompted whether I want to open it with the newly installed Adobe reader 9.0 or with Microsoft Word. I chose the Adobe Reader 9.0 and clicked on the check box asking whether we always want to open this type of file using this program.
    I managed to open the file and best of all is after that I was able to directly double click on the pdf email attachments to open it.
    Seems like that we need to let windows associate the file type with the program first.

  • I am using i padmini with retina display. i was curious to know if the pdf files saved on adobe reader app are safe from any hacking

    I am using i padmini with retina display. i was curious to know if the pdf files saved on adobe reader app are safe from any hacking

    If they are saved on your iPad, they are as safe as anything else.
    Barry

  • How do I select text from multiple pdf pages using Microsoft Document Imaging

    Hello.  I have scanned 3 pages and saved to pdf, now in Microsoft Document Imaging I can only select text from the first page and cannot select text from the other 2 pages.  Is there a way to select multiple pages?
    Thank you.
    Cat

    Why don't you ask in a MS forum? This forum is for an Adobe product and I have no idea why you are asking about Microsoft Document Imaging here.

  • How do I copy and paste text from a pdf file and paste it into a new pdf or word file?

    I have a very large pdf file (500 pages) comprised of 200 letters.  How do I copy individual letters (copy and paste sections of the file) and put them in a new pdf or word file?
    Thank you

    Hi drredwood,
    When you open your PDF file a yellow bar will appear on the top of the screen.
    Click on 'Enable All Features'.
    Then you will be able to copy the content from your pdf and to paste in any of the file.
    Regards,
    Florence

  • Can not copy text from a pdf file

    https://sites.google.com/site/sharedacrobat/data/cannot_copy_text.pdf?attredirects=0&d=1
    I can not copy the table caption in the above pdf. If I do so, I will get some gibberish, such as %"/*&+%",-.%&1",/*%9&,*09%&
    I'm wondering what happens to the pdf file. Is there a way to fix it so that I can copy the text?

    asdfabcedasf wrote:
    https://sites.google.com/site/sharedacrobat/data/cannot_copy_text.pdf? attredirects=0&d=1
    I can not copy the table caption in the above pdf. If I do so, I will get some gibberish, such as %"/*&+%",-.%&1",/*%9&,*09%&
    I'm wondering what happens to the pdf file. Is there a way to fix it so that I can copy the text?
    Does anybody know what cause the problem and how to fix it? The current walkaround is to convert the pdf into image, then load the image into acrobat and perform OCR. But this is tedious and some information may be lost. I'm wondering if there is a better solution.

  • How to combine typed text from several pdf files into 1 (not comments)

    I have a fillable pdf form that people can type answers to questions into, then save the pdf into an electronic file. Sticky notes are not used, as this pdf was created using Adobe LiveCycle Designer's text field (that is what they type into). I am wondering if there is a way to combine all peoples' answers from the text field all into one pdf document just like you can do to combine all sticky note comments into one single pdf. This is not a LiveCycle Designer type question. Thank you for your help!

    You would have to flatten or print each filled form to a new file and then combine. If you try to combine multiple filled forms directly, you will end up with all of the pages having the same information since all the fields on each form have the same name. Since the form was create in Designer, you may only be able to print in Acrobat. Otherwise, you would probably have to do the changes in Designer. Once you have a file in Designer, you can no longer edit it in Acrobat and that is why the Acrobat route would probably require a print to the Adobe PDF printer for each form.

Maybe you are looking for

  • I can't get airdrop to work between iPhone 5 and Macbook Air.

    Can anyone tell me how to use airdrop between iPhone and Macbook?

  • Jack cannot start in realtime

    Hi I cant start jackd in realtime mode (with a bare kernel26). the output from Qjackctl is: JACK is running in realtime mode, but you are not allowed to use realtime scheduling. After applying these changes, please re-login in order for them to take

  • Error appearing while transferring products from CRM to R/3.

    Hi All, I am facing a problem in CRM system while transferring products from CRM to R/3. System is throwing a message "Exception condition NO_STRUCT_DEFINITION raised" and product transfer is not happening. Please suggest some solution. Thanks & rega

  • Can you make a Testimonial  page in dreamweaver CS6

    Is a Testimonial page hard to build in Dreamweaver CS6. I working in the fluid grid layout for a site and I was checking online and no real answers if someone wanted to comment on your site or respond to some work you did for them.  Thanks for your t

  • Skype 7.0 not respond in windows 8 64bit

    My skype is working fine but when some time i switch to skype and wanna see messages, it will appear as not responding till i close the windows. And when i watch the full screen movie, switch back to skype, it will occur same problem again. Try most