Highlighting text in PDF document

I am a surgeon and subscribe to lot of medical journals which are now increasingly made available for downloading in PDF format. I am used to highlighting the important text in an article with an ordinary hi-lighter pen to make it easy when I need to go back to that article.
Is there a way one can highlight the text in a PDF document the way one can highlight it on a paper? Will professional versions of Acrobat solve my problem?
Sanjay Ghotkar

A little late for the original post, but for anyone else looking to highlight text in Acrobat Pro 9 and be able to change the highlighter color...
Accessing the highlighter tool:
Right-click on the Toolbar.
Select/check "Comment and Markup." This is the toolbar that contains the Highlight Text tool.
Changing the highlighter color:
You can right-click on the highlighted text and go to Properties, etc, but there's a more convenient method.
While using the Highlight Text tool, turn on the Properties Bar (make it visible)
Window:  Ctl+E
Mac:  Cmd+E
Mouse:  Right-click on the Toolbar and select/check Properties Bar.
This will give you quick access to your highlighter properties, and it will remember your selected color between uses.
The Properties Bar is context aware and will change based on the tool you're actively using, so you have access to change your highlight color through it when the Highlight Text tool is selected/in use.

Similar Messages

  • Highlighting Text in pdf Documents using Preview

    Am using Snow Leopard (10.6.3) with Preview version 5.0.2.
    Tried highlighting text using the instructions in Preview help. No success.
    I click Annotate; chose the Highlight Colour but then appear to be unable to select the text.
    Anyone any ideas?
    Thanks

    Thanks for the hint. I think I've just discovered why I cannot do it. The pdf document I'm trying to highlight is the result of the output from a scanner. Hence it is effectively a "picture" - not text. The only thing that I have been able to do is to choose Annotate and then choose "Add Oval" or whatever and select its size and colour and then position this over the text I wish to highlight.
    Because it is effectively a picture you cannot select text. I tried it on another pdf document that IS text and your solution works a treat.
    Thanks again
    Malcolm

  • How can I highlight text in a document scanned in pdf format?

    How can I highlight text in a document scanned in a pdf format?

    If it wasn't OCRed in Acrobat then you can only use the non-text commenting tools, like the Square or Polygon. Press Ctrl+E to open the Properties bad and you could make it look like a text highlight annotation.

  • Highlighting text in pdf's

    Hi, my first post here so hello all.
    Ok i've a simple question really. Can Oracle text display a pdf document with the chosen search criteria highlighted in the pdf??? I've seen that it can do this with html text but can it actually do the highlighting directly to pdf documents???
    Thanks

    Hi Omar, Thanks for your reply. Are you sure it doesn't support highlighting??? The reason I ask is we had an oracle e-architect present to us who was convince Oracle text in 9i would support this feature??

  • Is there a function or an addon that allows to export all highlighted text in a document to another document (to create summaries)?

    It would be very usefull to be able to export all highlighted text in a document at once

    There's a built-in function in Acrobat to create a comment summary (Comments - Comments List - Options - Create Comments Summary).

  • Highlight text in pdf

    How do I highlight text in pdf in iBooks? Can't seem to do that...

    iBooks is pretty feeble with PDF. There are many other pdf readers available that have many more features. Goodreader, iannotate, etc.

  • Why can't I make comments and highlight text in a document?

    Why can't I make comments and highlight text in a document?

    Nothing happens. I can select the text but when I go to “highlight” it the button is grayed out and nothing happens. Is there some sort of code that prevents certain publications from having portions of their text highlighted?
    Karl

  • After I highlight text in my document is there a way to undo the highlight?

    After I highlight text in my document is there a way to undo the highlight?

    Nevermind -
    I discovered the answer.
    Hold the highlighted area and the option to clear pops. 
    I would have liked to see this info in the get started document.
    great app!

  • Why can't I highlight text in PDFs that I have stored in iBooks?  Can't check definitions or make notes. Does anyone know of a solution to this problem?

    Why can't I highlight text in PDFs that I have stored in iBooks?  Can't check definitions or make notes. Does anyone know of a solution to this problem?

    maybe you should post it here
    https://discussions.apple.com/community/app_store/ibooks

  • Copy Highlighted Text in Pdf file

    Hi everyone,
    Recently I downloaded the Adobe Reader X (version 10.0). This version allows me to highlight text (in yellow colour). However, If I want to copy a highlighted block of text (for instance to paste into a Word document), I am not able to do this. When I select the highlighted text and click on the right mouse click, it doesn't give me the opportunity to copy this text. Therefore, I was wondering whether I can copy the highlighted text in another way?
    Thanks in advance for a reply.
    Kind regards,
    Sleighon

    kaemus78 wrote:
    It seems you don't understand where the problem is.
    Indeed, I do not understand what the problem is.  When I tested it yesterday (using Reader 11.0.1) I actually took some screenshot, but I didn't think it necessary to post them.  I'll do it now.
    Opening a random PDF from My Documents
    then highlight some text
    apply the Select Tool (using right-click)
    select the same highlighted text
    copy (Ctrl+C) then paste it into an empty Word document
    Ok, the highlighting did not get copied over - is this the problem?

  • How to highlight text in pdf file programmatically

    I am using below mentioned code to highlight text programmaticaly using VB.net But required text is getting selected but doen't get permanently highlighted. Can anybody help me out.
    Dim gAvDoc As
    Acrobat.CAcroAVDoc 
    Dim myhitlist As
    Acrobat.CAcroHiliteList 
    Dim mypdpage As
    Acrobat.CAcroPDPage 
    Dim acroPageView As
    Acrobat.CAcroAVPageView 
    Dim textSelect As
    Acrobat.CAcroPDTextSelect 
    Dim gPDFPath As
    String
    Dim gApp AsAcrobat.AcroApp 
    gPDFPath =
    "C:\Test.pdf"
    gApp = CreateObject("AcroExch.App") 
    gApp.Show()
    gAvDoc = CreateObject("AcroExch.AVDoc") 
    gAvDoc.Open(gPDFPath,
    "")acroPageView = gAvDoc.GetAVPageView()
    acroPageView.GoTo(1)
    myhitlist = CreateObject(
    "AcroExch.HiliteList")myhitlist.Add(50, 10)
    mypdpage = acroPageView.GetPage()
    textSelect = mypdpage.CreateWordHilite(myhitlist)
    gAvDoc.SetTextSelection(textSelect) 
    gAvDoc.ShowTextSelect()
    gAvDoc.Close(True) 

    Patrick on writting saving code also its not hightlighting the text. Text gets selected but it doen't get highlighted with yellow color...
    Dim gAvDoc As
    Acrobat.CAcroAVDoc 
    Dim myhitlist As
    Acrobat.CAcroHiliteList 
    Dim mypdpage As
    Acrobat.CAcroPDPage 
    Dim acroPageView As
    Acrobat.CAcroAVPageView 
    Dim textSelect As
    Acrobat.CAcroPDTextSelect 
    Dim gPDFPath As String 
    Dim gApp As Acrobat.AcroApp 
    Dim mypddoc As Object
    gPDFPath ="C:\Test.pdf"
    'Initialize Acrobat by creating App object
    gApp = CreateObject("AcroExch.App")mypddoc = CreateObject(
    "AcroExch.PDDoc") 
    gApp.Show()
    mypddoc.Open(gPDFPath)
    gAvDoc = CreateObject("AcroExch.AVDoc") 
    gAvDoc = mypddoc.OpenAVDoc("testing")acroPageView = gAvDoc.GetAVPageView()
    acroPageView.GoTo(1)
    myhitlist = CreateObject(
    "AcroExch.HiliteList")myhitlist.Add(50, 10)
    mypdpage = acroPageView.GetPage() 
    textSelect = mypdpage.CreateWordHilite(myhitlist)
    gAvDoc.SetTextSelection(textSelect)
    gAvDoc.ShowTextSelect()
    mypddoc.Save(PDSaveFull, gPDFPath)
    gAvDoc.Close(True)

  • When I try to select text from pdf-documents the pdf reader cannot select a single line.

    When I try to select the text from a pdf file instead of selecting a line, the paragraph gets selected. The document does not have any document restrictions, and the text is not in an object form. Any reason why I am not able to select the text.

    Hi,
    Which 'Documents' folder are you referring to?
    A screenshot of the issue would be more helpful for me to understand the issue.
    Regards,
    Florence

  • Can't print highlighted text on pdf's in Preview

    I had printing problems with my office printer Canon IR series. the Canon update UFR II V 2.24 fixed this but brought a new problem.
    I can't print annotated pdf's correctly.
    Any highlighted text is covered with a full colour bar with no text visible under it. It just covers the text.
    Is there a fast way of printing with no annotations or of fixing this problem and just print the highlights correctly?!
    Thanks

    Centrolene wrote:
    Any highlighted text is covered with a full colour bar with no text visible under it. It just covers the text.
    Is there a fast way of printing with no annotations or of fixing this problem and just print the highlights correctly?!
    Just tested this to the iR C3380i using the UFR2 v2.24 and can replicate the symptom. I found that if you change the Graphics Mode from UFR2 to Raster, the text will print. To get to this setting, select to print with the UFR2 driver and change to the Quality menu. Then select Quality Setting button to show the Quality Settings pane. Here you will see the Raster Mode setting. Select and OK the change and now you can print the annotated PDF.
    You will probably note that this workaround was the same solution to the Graphics Mode message that appeared with the previous version of the UFR2 driver with the 10.6.7 update. The v2.24 driver stopped this message from appearing but this latest symptom would suggest there is still something not completely right with this new driver, although I seem to remember there being issues with the older driver on earlier versions of 10.6 and the Graphics Mode setting was the only solution.

  • Extract highlighted text in PDF

    Hi,
      I want to write a tool which can extract highlighted text from the pdf and export the text into another pdf file. Can somebody give me directions how to do that.
    if you think some tool already has that capacity, please let me know. Most of the tool I know just extract the summary like the location of the highlighted portion but not the actual text associated with it.
    reards,
    Avesh

    Hi,
    The question relating to extract text from pdf file is beyond the scope of c# forum , please try to refer to:
    http://www.adobe.com/support/acrobat/
    HarryPlease remember to mark the replies as answers if they help and unmark them if they provide no help.
    Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.

  • Why can't I paste exact form of the text from pdf document?

    Dear List Members,
    I have a pdf document - it's scientific paper, containing some Fortran codes. I wanted to copy these codes into text file, in order to compile them and run. But after pasting, some characters are not copied in exact form. For example: "0" (digit zero) is pasted as "O" (big O character), letter "I" (big "I" character) is pasted as "1" (digit 1), etc. Finally I have to manually check the listings, what is very irritating and even this way I can't eliminate all the errors of this kind.
    What is the reason of this situation? The source pdf document contains text. I used Acrobat, Acrobat Reader and AABBY Pdf Transformer.
    Any help?
    Regards,
    Jack
    Poland
    P.S. I wanted to add this source pdf document to this post, but I don't know how to do it :-( Is there any option for it?

    Thank you very much for your answer.
    I posted this file here: http://www.4shared.com/office/KdDf2e63/p133-kimbler.html
    It's 20-pages long document. The text I want to copy is on pages 148-151 (computer listing), according to the page numbering in this document.
    May someone look at this file?
    Regards,
    Jack

Maybe you are looking for

  • Connecting Creative Inspire 5.1 speakers to DVD player

    Hi, I have a LG DVD Player (DSI 8352) which gives 5.1 home theatre (dolby decoder) output. If I buy Creative Inspire 5.1 speakers (5200 or 5700), how do I connect them ? Through RCA Stereo cables ? Would there be any compatibility issues ? Please sug

  • LV NXT toolkit 2.0 for mac

    On the toolkit downloads page, the NXT 2.0 toolkit is for windows only. However, there is Mindstorms NXT 2.0 for both operating systems. I was wondering what might cause this discrepancy.  Has NI simply not built this installer for mac, or are there

  • Init-params in web.xml are not loaded (Tomcat 4)

    Hello all... I register a servlet in webapps/<my-servlet>/WEB-INF/web.xml file, and pass 1 <init-param> tag. The file gets parsed (I know because when I made errors tomcat complained during initialization). However, when in the init method of the ser

  • Making a Bell Curve in Numbers or MS Office for MAC: I already have mean and standard deviation

    I hope my question is a simple one with a simple answer: I have the results of a mid-term and the professor gave us the mean and standard deviation of the results of the exam from which he based our grades. I am a visual person and (to be honest) wit

  • Installation completed though some option components failed to install correctly

    When I went to Install Premiere Pro from the Creative cloud I got a message saying "Installation failed Installation completed though some optional components failed to install correctly. (6)" There's a "More information" button that linked me to thi