Linking to specific text

Hi All!
I would like to link to specific text within a PDF document.
I can link to pages, but I can't link to specific text within a page.  Is there any way to do this?
I'm on Mac OS 10.5.8 using Acrobat 9.4.0 ...
Thank you so much!!
Diane

Hi!
Thank you again!
I know I can link to a page but that's not what I need.
I need to be able to link to specific text on a page.
See, if the text I need to link to is in the middle of the page then it kind of creates a problem because the link doesn't go directly to that text, instead it goes to the top of the page that the text appears in.
That's not what I want it to do.
I want the text that I link to, to be what shows at the top of the window, rather than the beginning of the page that the text appears on.
Thank you for trying!  I'm thinking Acrobat probably can't do what it is I want to do.
Have a good day and week!
Diane

Similar Messages

  • Link to specific text from another web page

    Hello all
    Is is possible to link from one page to a specific piece of
    text in another web page in the same site? I have tried named
    anchor, hyperlink, etc but it just goes to the page rather than the
    text. I don't know if I am attempting the impossible. Can you help?
    Thank v much.

    > This also has a css rule so this 9pt thing is left over
    from copy and
    > pasting
    > from Word. I have it cleaned up as you suggested but I
    still have:
    > <span style="font-family:Arial; font-size:9.0pt; is
    there way of avoiding
    > this?
    It depends on your settings for how you copy/paste. See your
    PREFERENCES
    for those. I don't get such things because my settings are
    'tight' in that
    they are restrictive to what stying is carried into the page.
    > How I do this in a nav bar?
    Change this -
    .nav {
    font: bold normal 14px/normal Arial, Helvetica, sans-serif;
    text-transform: none;
    color: #003300;
    font-weight: bold;
    a.nav:link {
    font: normal 12px/normal Arial, Helvetica, sans-serif;
    text-transform: none;
    color: #003300;
    text-decoration: none;
    a.nav:visited {
    font: normal 12px/normal Arial, Helvetica, sans-serif;
    text-transform: none;
    color: #003300;
    text-decoration: none;
    to this -
    .nav {
    text-align:center;
    .nav a {
    font: bold normal 12px/normal Arial, Helvetica, sans-serif;
    color: #030;
    font-weight: bold;
    text-decoration:none;
    margin-right:35px;
    and then change this -
    <div align="center"><a href="index.html"
    class="nav">Home</a>       <span
    class="nav">About
    Us</span>      <a
    href="impact_HE.html" class="nav">Impact of HE
    Proposal</a>      <a
    href="purpose_ED.html"
    class="nav">The Purpose of
    ED</a>      <a
    href="procedures.html"
    class="nav">Procedures </a>     <a
    href="what_can_we_do.html" class="nav">What Can We
    Do?</a></div>
    to this -
    <div class="nav"><a
    href="index.html">Home</a><a
    href="about_us.html">About
    Us</a><a href="impact_HE.html">Impact of HE
    Proposal</a><a
    href="purpose_ED.html">The Purpose of ED</a><a
    href="procedures.html">Procedures</a><a
    href="what_can_we_do.html">What Can
    We Do?</a></div>
    But an even better way would be to make the menu an unordered
    list, like
    this -
    <ul>
    <li><a
    href="index.html">Home</a></li>
    <li><a href="about_us.html">About
    Us</a></li>
    <li><a href="impact_HE.html">Impact of HE
    Proposal</a></li>
    <li><a href="purpose_ED.html">The Purpose of
    ED</a></li>
    <li><a
    href="procedures.html">Procedures</a></li>
    <li><a href="what_can_we_do.html">What Can We
    Do?</a></li>
    </ul>
    And use this CSS -
    .nav {
    text-align:center;
    .nav ul {
    list-style-type:none;
    margin:0;
    padding:0;
    overflow:hidden;
    .nav li {
    float:left;
    width:150px;
    margin-right:5px;
    border-right:1px solid green;
    .nav a {
    font: bold normal 12px/normal Arial, Helvetica, sans-serif;
    color: #030;
    font-weight: bold;
    text-decoration:none;
    If you want to make the current page look like it doesn't
    have a link, then
    do this -
    <ul>
    <li><a href="index.html"
    id="home">Home</a></li>
    <li><a href="about_us.html" id="about">About
    Us</a></li>
    <li><a href="impact_HE.html" id="impact">Impact
    of HE Proposal</a></li>
    <li><a href="purpose_ED.html" id="purpose">The
    Purpose of ED</a></li>
    <li><a href="procedures.html"
    id="procedure">Procedures</a></li>
    <li><a href="what_can_we_do.html" id="what">What
    Can We Do?</a></li>
    </ul>
    and add this to each page (use the proper ID) -
    a#about {
    cursor:default;
    /* any other styles you want to make the current page show
    > I am being a complete idiot today (maybe it's because
    it's Sunday) Can you
    > talk me through this.
    Make the changes manually in code view.
    If you are getting the idea that you will need to ramp your
    HTML and CSS
    skills to do this stuff, you are right on target!
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Dottydog" <[email protected]> wrote in
    message
    news:[email protected]...
    > Dear Murrray
    > Thank you very much for your comments.
    >
    > Can I ask you the following:
    > 1. p.MsoNormal {
    > Using Microsoft Word to build an HTML page is not
    advisable. Use DW only
    > or
    > clean up the Word markup
    >
    > This also has a css rule so this 9pt thing is left over
    from copy and
    > pasting
    > from Word. I have it cleaned up as you suggested but I
    still have:
    > <span style="font-family:Arial; font-size:9.0pt; is
    there way of avoiding
    > this?
    >
    > 2.
           <span
    class
    > Using non-breaking spaces as a layout tool is not
    advisable. Use CSS
    > margins/padding instead..
    >
    >
    > 3. This is not a named anchor point. It is not even a
    link. For that you
    > would need -
    > <p style="font-family:Arial,helvetica,sans-serif;
    font-size:small; "
    > id="BDBC">What we have said to
    B&amp;DBC</p>
    >
    > I am being a complete idiot today (maybe it's because
    it's Sunday) Can you
    > talk me through this.
    >
    > Thank you very much for your time. Much appreciated.
    >
    >
    >
    >
    >

  • Turn a text database search result into a clickable .pdf link to specific images

    Hello and Good Afternoon all. 
    This is baffling me to no end, pretty desperate at this point. 
    I have a successfully implemented a search and results page from my database table 'products'.  The results page displays a field from this table as products, msds, datasheet, description.  I would like the msds & datasheet results to be clickable links to files in my images/pdf/msds folder or the images/pdf/datasheet folder. 
    The links are specific filenames such as msds-product.pdf or datasheet-product.pdf..  How can I get these links to open the exact filename that comes up in my search result?  I can make it open the entire folder but I want just the specific file. 
    I don't write code very well - thank you for any help you can provide.  Cindy

    Hi Murray - Here is the exact code in DW on the results page with file names exposed in live view.  I am concerned about not properly implementing this statement - where exactly should I insert?
    <form action="data_search.php" method="get" name="data_results_form" id="data_results_form">
             <p> </p>
             <?php do { ?>
                  <table width="75%" border="0" align="center" cellpadding="5" cellspacing="5" summary="MSDS & Datasheet search results page.  You may click on the hyperlinks to download pdf for each document.">
                       <tr>
                            <td> </td>
                            <td> </td>
                            <td> </td>
                            <td> </td>
                       </tr>
                       <tr>
                            <td style="color: #686666">Product</td>
                            <td style="color: #686666">MSDS</td>
                            <td style="color: #686666">Datasheet</td>
                            <td style="color: #686666">Description</td>
                       </tr>
                       <tr>
                            <td style="color: #23276A; font-family: Gotham, 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-size: 16px;"><?php echo $row_Recordset_results['product']; ?></td>
                            <td style="font-size: 16px"><a href="images/pdf/msds/"".pdf"><?php echo $row_Recordset_results['msds']; ?></a></td>
                            <td style="font-size: 16px"><?php echo $row_Recordset_results['datasheet']; ?></td>
                            <td style="font-size: 16px"><?php echo $row_Recordset_results['description']; ?></td>
                       </tr>
                  </table>
                  <?php } while ($row_Recordset_results = mysql_fetch_assoc($Recordset_results)); ?>
        </form>

  • How do I link to Anchor Text from browser to PDF file exported from InDesign?

    I see that this question was asked previously but not answered:
    http://forums.adobe.com/message/3737541
    I need a way to link to topics (from an HTML page) within a structured PDF file generated from InDesign, i.e. one that has an interactive bookmarks
    panel, that doesn't break the links when the file is updated.
    In particular, I don't want to refer to:
    *  page numbers because the document will repaginate when it is updated, breaking existing links
    * named destinations that are numeric as addition/deletion of topics renumbers the named destinations, breaking the links.
    Is there any option in InDesign that creates named destinations derived from bookmark titles as that would seem to solve my problem?
    I have a similar need, but I have not been able to find an answer anywhere online, even after a several hours of research.
    I am on contract with General Electric to develop a UI Style Guide for an international team of developers. My client wants to be able to distribute the Style Guide as a PDF document, but needs to provide links to specific topics when submitting a "Story" in an Agile development environment to the programmers.
    Ideally, I would like to be able to create "named destinations" in InDesign such that I can provide the client with a list of URLs similar to this format:
    file:\\StyleGuide\Test1-20131024a.pdf\#nameddest=AnchorText-01
    However, I can not figure out how to create "named destinations" in the PDF file from the InDesign file in which I have created the Anchor Text in the Hyperlinks tab.
    Alternately, the client would be satisfied with the ability to link to specific bookmarks in the exported PDF file that have been derived from the configuration of the Table of Contents styles, but my research has led me to believe that it is not possible to hyperlink from a browser window to a bookmark in a PDF file (only to specific page numbers, search word lists, named destinations, and comments) as described here: http://blogs.adobe.com/tcs/2011/01/tcs-specific/linking-to-a-page-within-a-pdf-and-more.ht ml
    Having been using InDesign since 1988, when it was PageMaker, I would prefer to use it to provide GE with the most attractive deliverable, but they are now leaning heavily toward having me licensed with Madcap Flare, which has this capability built in:
    http://webhelp.madcapsoftware.com/flare9/Default.htm#Nav_Links/Named_Destinations/Creating _Named_Destinations.htm
    Please help me to find a solution that will allow me to continue using InDesign for this project.
    Thank you!
    Lynne O’Connor
    Technical Writer (contractor)
    GE Oil & Gas - Measurement & Control

    Follow-up post (solution is not available):
    I have just completed a phone call with Gaurev Sethi of Adobe escalated technical support in which I shared my screen to explain and demonstrate the desire to link from an external URL to a specific location within a PDF file that has been exported from InDesign. After 40 minutes, during which I was placed on hold a few times while he consulted with his team, it was determined that the desired functionality is not supported in InDesign and has been identified as a limitation of the software.
    In researching alternate documentation software that supports PDF export, I discovered that Madcap Software supports this functionality in its Flare product:
    http://webhelp.madcapsoftware.com/flare9/Default.htm#Nav_Links/Named_Destinations/Creating _Named_Destinations.htm
    Note that linking via URL to a bookmarked location within a PDF is not supported:
    http://blogs.adobe.com/tcs/2011/01/tcs-specific/linking-to-a-page-within-a-pdf-and-more.ht ml
    More about parameters that can be specified to open PDF files are available here:
    http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open_parameters.pdf
    Although the above link is for a previous version of Acrobat, I could find no evidence to the contrary in the current SDK documentation.
    -Lynne

  • Is Acrobat Pro right for us. We have an Employee Handbook that needs editing. Some is current pdf, some from an older version. Want to get all into one handbook, have the table of contents automatically adjust and link to specific pages from the ToC.

    Is Acrobat Pro right for us. We have an Employee Handbook that needs editing. Some is current pdf, some from an older version. Want to get all into one handbook, have the table of contents automatically adjust and link to specific pages from the ToC.

    You can download the trial version (http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html) to convert the PDF back to WORD if you do not have the original. The conversion may not be perfect, but it is typically better than starting from scratch. You may be lucky and get a good result. You might check the settings (in the save screen) to try retain format versus retain text flow. The format version can be a pain to edit since it creates a bunch of text boxes. The flow version may require you to reformat in WORD, but you likely would want to do that anyway.

  • Linked Adobe Tagged Text files importing without styles

    I have several data-heavy weekly publications where suddenly, the link to all Adobe Tagged Text format files have the proper paragraph styles and character styles stripped on being placed.  I'm aware of the default settings issue, where you deselect all and make sure the character styles is none, and that does not seem to be the issue. Specifics are
    Working in CS 5 (Version 7.0.4)
    The Adobe Tagged Text format files are exported from Excel spreadsheets
    The InDesign documents have links to the Adobe Tagged Text format files, and Update Link is used inside InDesign to update the text when the file is exported from the spreadsheet.
    When the publications are opened on my workstation, ALL files linked to Adobe Tagged Text files are not imported correctly, they revert to the Basic Paragraph style.
    These are not new documents I'm designing or new Adobe Tagged Text files, this is part of a production process that has worked without issue for years.
    When the same documents are opened on another workstation, and Update Links used, they come in perfectly, so it doesn't seem to be a document or file corruption problem, but a problem with my environment or ID settings.
    It's not one specific document or file, it is every single document that has a link to an Adobe Tagged Text file (and we have lots, I tried several!)
    I've opened the text files in the text editor to check them, but as I mentioned: same document, same files, I'm the only one who can't update without stripping out the styles.
    Thanks! Nancy

    Hi, Peter! Thanks for the response. Yes, it's really Tagged Text. See below. After exporting from the spreadsheet and database, opening the document in InDesign, and selecting update link, we do no editing in InDesign after the fact because everything is already setup exactly as we want it with the Tagged Text format.
    I have literally hundreds of these among several different documents, updated weekly, mainly dealing with prices and numbers. Every one of the links to Tagged Text format files in every publication now strips out the Tagged Text paragraph style and character style formatting on Update Link on my workstation only. On my other two workstations, the links update without issue, and everything is correct in the final document.
    So I'm beginning to think I need to look at rebuilding something, maybe as Joel said, replacing preferences. I keep looking for a workstation or ID option that might effect this.
    <ANSI-WIN>
    <vsn:6><fset:InDesign-Roman><ctable:=<Black:COLOR:CMYK:Process:0,0,0,1>>
    <dps:Pnl Comp\:Pnl Comp \$Numbers=<Nextstyle:Pnl Comp\:Pnl Comp \$Numbers>>
    <dps:Pnl Comp\:Pnl Comp Bold \$Numbers=<BasedOn:Pnl Comp\:Pnl Comp \$Numbers><Nextstyle:Pnl Comp\:Pnl Comp Bold \$Numbers>>
    <dps:Pnl Comp\:Pnl Group \$Numbers=<BasedOn:Pnl Comp\:Pnl Comp \$Numbers><Nextstyle:Pnl Comp\:Pnl Group \$Numbers>>
    <pstyle:Pnl Comp\:Pnl Comp Bold \$Numbers> $302 $302 $278
    <pstyle:Pnl Comp\:Pnl Group \$Numbers> 203 202 211
    <pstyle:Pnl Comp\:Pnl Group \$Numbers> 456 458 393

  • How to check if there is specific text in a word document ?

    Hello everyone ,
    I have a form include text box1  , I need to check a word document if  there is specific text inside it , if it’s true the textbox1.text = 1 , if it’s false the textbox1.text = 0 , and so on .
    to be clear I’m trying to check a lot of things not just specific text also ( font size , font color , font type , photo , table …………etc ) .
    I read a lot of threads about Office Automation , all about how to create a new documents and insert text tables photos….. etc, but what I need just to check if it existing or not
    Any idea , books, threads ,examples ….
    Thanks in advance.
    Visual Studio 2013
    office 2007

    "1- what if i need to check that word in the beginning of the second paragraph in that document or at the end of the third paragraph "
    to find a word in a paragraph, use the range keyword as in
    Dim rng As word.Range = objDoc.Paragraphs(1).Range
    rng.Find.Execute(FindText:="yourtext")
    " can you give me any website or books , to learn how to check  ( font size , font color , font type , photo , table
    …………etc ) and return with (1,0) or (true ,flase)."
    You can use the range object here aswell
    If rng.Font.Size = 7 Then TextBox1.Text = 1
    Look at this link for a multiple of examples about word automation
    https://msdn.microsoft.com/en-us/library/78whx7s6(v=vs.80).aspx

  • Creating links to specific area in a PDF

    I want to create a link to go to a specific text area in my one-page PDF... not allowing anything outside of this specified area to be filled unless you click on this link. Does anyone know how to do this?

    Creating a link to a specific area is very easy. Make a button and set its action to "Go to page view", then go to the area (you can even set the zoom level you want) and set the link.
    Preventing the user from leaving that area is not possible.

  • How to give the link to specific post in this newsgroup?

    Hi everybody.
    I run to a situaion when I wanted to give a link to some earlier posts in this newsgroup, but I did not know how .
    There is a long line in address field in my IE and it is to my personl setting I guess. What I shell do to give somebody a link to specific posr?
    thanks in advance
    Pawel

    I believe you are wanting to just provide a link to another newsgroup? If so, you can just copy and paste the address into your response. Also, you can use HTML code to make it look nicer. For example, I can use the following address:
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=5065000000080000008F550000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0
    Or, you can use simple HTML code within your posting. The format in this case is display text .
    So, for example, I could also have a link LIKE THIS which will take you to a page also. Refer to This Page for more of the simple HTML commands you can use.
    J.R. Allen

  • Search for specific text in numerous forms

    Hi,
    Looking for help to find forms that use hardcoded database links.
    Earlier in Forms 4.5 we used to convert all the 100 and odd forms to .fmt and then search in the fmt files for specific text. Forms 6i converts pl/sql code into something else hence we are not able to use the same technique as earlier. Does anyone have any suggestions for doing this in 6i.
    Thanks

    Forms 6i will also do a proper Forms Doc / Object List Report from the command line (eg f60gen script=no build=no forms_doc=yes batch=yes module=${MOD} userid=${CONNECT_STRING} module_type=${TYP} output_file=${OUT} module_access=file)
    The .txt output can be readily searched

  • Can I add specific text to Template via pop up text box on opening file?

    In most word processors it is possible to create a template that asks you for specific text when you open it, so that you can have the letter three quarters written within the template, and only need to replace names, addresses, date and so on.
    In Lotus WordPro for instance, before I even see the file, I have to fill in a dialogue box with the persons name, the subject of the letter, and four or five specifics unique to them. The WP then adds this info into the letter, and all I need do is to occasionally write a further full paragraph.
    How do I do this in Pages? I can't seem to find anyway to do it at all. I have a suspicion I might need Apple Script, but I'm not sure how I can do that. I have a book of how to code, but I don't know where to store the macro, nor to write it yet - the book's just there if I need it.
    I want to open the file, and then be asked one item at a time for the personalised answers to questions that occur in every report/letter.
    Any ideas?
    TIA
    Mac

    Thanks for your suggestions, Magnus, you really have had a good think for me - I appreciate that!
    What I am doing is report writing in which 90% of the report is the same for everyone. Except the cover page with Name and Address details, and Report title; the initial section which is the same for everyone except for specifics such as amount to invest, reason for investment, term to invest over, things like that.
    The end of the report is the recommendations section which is where I use freetext to create a bespoke solution - this cannot be automated.
    Just automating the cover page and the intro section save me huge amounts of time which I can then use on research and fund analysis, leaving the principles of investment section pretty much the same for everyone, as here I'm describing the principle and theory.
    After I created this Report Template my average report creation time went down from about 3 to 4 hours, to about 45 minutes. I guess the automation itself doesn't save as much time as the templating does, but it allows me to concentrate on the important bit and not worry if I have left something out - or in - that changes the overall thrust of the report.
    I cannot load Lotus WorpPro on Parallels, nor on Virtual PC, so the lack of automation really is a pain here. I see it as a weakness of Apple products for business, as I am sure Microsoft do which is why they have dropped VBA support for Office 2008.
    I have got NeoOffice as well as OpenOffice for Mac on my system, but really they aren't atable enough to use, and the formatting is pretty flaky. It certainly isn't completely consistent with Office itself.
    So, I am left with the conclusion that progress only means a reduction in features!
    But maybe I'm missing something?
    Mac

  • Can you create a button that adds specific text to a form field?

    Hi,
    I was wondering if it was possible to create a button in a PDF that, when clicked, adds specific text to a form field?
    I am trying to make a product catalogue where you click on a product button to add the product name or code to a form field.
    Each product in the catalogue will have a button and the more you click the more is added to the form field(s).
    Then when you have finished adding products to the form field(s) I want to be able to save and email the entire PDF as an order form.
    Any thoughts would be appreciated!
    Cheers,
    Jim

    Yes, it's possible. The most simple version of such a script will be something like this (used as the button's MouseUp event):
    var v = this.getField("Products");
    if (f.value!="")
         f.value += ", ";
    f.value += "Product1";

  • How do I find and remove specific text in a PDF document?

    hi. sorry for my english (i am from russia))
    there is the problem - how do i find specific text in a document (in my case, it - all numbers (0-9)) and delete it, using javascript??
    And I would like to know also - is the a search function with regular expressions??
    And most importantly - how to remove the founded text???
    is it possible?
    document is so big, that if I manually delete the numbers - I will do it for a month!!))
    Thank you!!!!

    Thanx!!!
    that is, if there are entries in document "hello 1234", then the search all words will identify it as two words "hello" and "1234". and then I check with regular expressions where the numbers.. ?
    ps. and I have not found yet any command, that replace the founded text from javascript))
    yes.. in acrobat X pro.. tools-protection-search&remove is also avaible....! (but, no regular in search string.. to bad...)
    thank you!

  • Looking for an app that will alarm on specific text messages.

    Looking for an app that will alarm on specific text messages. The idea is to use the message as a pager without a monthly subscription. There is a similar app for andriod called firealert.

    I could not find any app that would do this. There are different types of message apps but nothing that I could find to do what I am looking for. For a specific contact I would like the message to have a notification that will not go away until I acknowledge it. Just like you would do if it was a pager.

  • I just downloaded iOS 6 on my iPhone 4 and now can no longer open internet links that were texted to me.  Anyone else having the same problem?

    I just downloaded iOS 6 on my iPhone 4 and now can no longer open internet links that were texted to me.  Anyone else having the same problem or know how to fix this? 

    The SMS links thing is highly annoying. You don't have to copy/paste however. You should see an icon like this: (>) to the right of the text bubble with the link. Tap on that, the in the screen that opens, tap "Visit".
    Alternatively, you can tap twice directly on the link, then hold your finger down after the second tap.
    Still unnecessarily difficult, but not as bad as copy/paste.
    What I don't get is why can't I find any mention of this change or how to fix it (if even possible) elsewhere online?

Maybe you are looking for

  • ComboDrive - CDs suddenly won't mount but DVDs will, after updates

    I have a 15" 1.5Ghz Powerbook, have had it for a year and a half and still have Applecare on it. All was working fine and dandy until I made the big mistake of doing a small software update - which updated Safari to 1.3.2 i think, iTunes from 6.0.1 t

  • Unable to connect Brother printer to Airport Extreme using USB

    Hi, I recently bought a Brother HL-2270DW printer, which has 802.11 b/g wireless capabilities.  My airport extreme (2008 model) is set to 802.11 n (5 ghz), so I can't set-up the printer wirelessly to the airport extreme without changing to 802.11 b/g

  • Where to set up Corresponding Integ. Server

    Hi In the SXMB_ADM Tcode in Integration Engine Configuration for the role of business system -> Integration server i am not able to see any corresponding Integration server.. How we set up the corresponding Integration server in SXMB_ADM venkat

  • HT1529 Will the serial num. tell the year?

    New with Mac Book Pro  my serial number isRM******YA3  need to know the Year.    Model identifier,  Macbook 2,1 <Edited by Host>

  • ISA B2b basket extension data for items not showing in ordersimulation

    When adding extension data to the items of the shopping basket this works fine until continuing to the Order Simulation. Here all extension data on item level is lost (header level is fine). When proceeding to create an order template however it work