Make identical text hyperlinks in InDesign

I have lots of text with the same URL destination, such as 123ABC.com within an InDesign document. I want to make each one a hyperlink. Is there a way I can do that quickly instead of having to go to each section of text that has 123ABC.com and making it a hyperlink? If I could batch that or "apply all", that would be great.

Check out this script.

Similar Messages

  • I am pulling my hair out! I am using adobe indesign and just want to make a text box 'autofit text' as I change fonts a lot and want the font to automatically re-size as I change it. help help help please - I have latest version of indesign - thanks

    I am pulling my hair out! I am using adobe indesign and just want to make a text box 'autofit text' as I change fonts a lot and want the font to automatically re-size as I change it.
    Is it not possible to create a text box, fill it with dynamic (data driven) text, but make the font size either scale up or down automatically, so that the entire text box is filled? This is a feature in PrintShop Mail Pro called COPY FIT. but no such feature in Indesign??
    help help help please - I have latest version of indesign - thanks, DJ

    lol... it seems to work, but I have another huge problem!
    Apparently .CSV files cannot contain page breaks in the data! The data I am trying to merge is a 'letter', with paragraphs, line breaks, etc.,
    But, after data merging, it ignores page breaks and only merges the first paragraph of each letter. (sigh)
    Solution? Hopefully, an EASY solution. lol as we have thousands of records.
    Is there a third party indesign plugin that will allow .xml, or .xls data merge import??
    Thx,
    DJ

  • Is there an inexpensive Adobe product that can make small text changes in an InDesign document?

    I run a small nonprofit where one of our staffers uses InDesign to design our documents. I often make small text changes and would rather not have to run them through her all the time. Is there any inexpensive Adobe product that would met me make these small changes, since I don't need the full Creative Suite (or even full InDesign) capabilities?

    You say that you want an Adobe product, but you may not be aware that
    there are other products that may work for you as well, in particular
    DocsFlow or WordFlow (EmSoftware -- no affiliation to me!)
    This would allow your designer to export the story to Word or GoogleDocs
    where you make your changes -- and he or she then simply updates the
    document in InDesign with the press of a button.
    Worth looking into.

  • I want to bring in text from Word (and the web) that is already hyperlinked into InDesign. How do I do it while keeping the links active?

    I want to bring in text from Word (and the web) that is already hyperlinked into InDesign. How do I do it while keeping the links active?
    Whenever I copy/paste from web or Word it removes the hyperlinks.  And when I try to do it by "Place"ing a Word document into my InDesign project it keeps the formatting with it, the rectangles around the text.
    I have the latest version of InDesign.
    Any help is appreciated. 

    Copy-and-paste may not include formatting. A regular import using Place is the best way.
    The rectangles around the hyperlinks are just to indicate they are links -- they do not print, but they do show up in your PDF.
    You can remove them by double-clicking the hyperlink in the Hyperlinks panel and select "Invisible Rectangle" as type.
    Typically, Word hyperlinks are formatted -- blue text, underline -- with a Character Style. If you want to remove or change the formatting, all you have to do is change the character style. My experience, though, is you must check all hyperlinks because for no apparent reason sometimes they appear in the document without the character style.

  • Converting HTML Links to Hyperlinks in InDesign

    Hi--I'm new to this forum, so forgive any newbie-ness...
    Working on a pretty intense automated page layout which creates a product cut sheet based from content that is on the web (using AppleScript). One feature I'm trying to build in is to convert typical HTML href tags to an actual hyperlink in InDesign.
    I'm using GREP to find all the html tags, which works very well.
    What I can't do (and it might be a limitation of GREP in ID) is store the 'change to' locations as variables in AppleScript. For example, I use:
    --find the href tag
    set find what of find grep preferences to "(?i)(<a href=\")(.+?)(\")(.*)(>)(.*)(</a>)"
    --change to the stuff in the href=" " and the text I want to keep
    set change to of change grep preferences to "$2 $6"
    What I NEED is the ability to make $2 and $6 variables.
    Any advice, tips, hints, tricks, and/or help?
    Thanks all!

    Sorry, it's been a while since I solved this, so its not too fresh. There may be pieces missing. Here's the exerpt of what I did to change real html marked-up text (which contains hyperlinks) into real, clickable InDesign hyperlinks. In a few words, I found the html hyperlinks in the text, and "marked it up" with my own "xml" type language (for later). Then I think I made an array of every link and location, then had InDesign go through and convert to hyperlinks.
    ---CONVERT HREFS TO HYPERLINKS------------------------------------------------------
        set find grep preferences to nothing
        set change grep preferences to nothing
        --FIND HYPERLINKS
        set include footnotes of find change grep options to false
        set include hidden layers of find change grep options to false
        set include locked layers for find of find change grep options to false
        set include locked stories for find of find change grep options to false
        set include master pages of find change grep options to true
        set find what of find grep preferences to "(?i)(<a href=\")(.+?)(\")(.*?)(>)(.*?)(</a>)"
        --set find what of find grep preferences to "(?i)(?<=<a href=\").+?(?=\")"
        set change to of change grep preferences to "<url>http://www.mywebaddress.com$2</url> <linked text>$6</lt>"
        set applied character style of change grep preferences to nothing
        tell specSheet
            change grep
        end tell
    set find grep preferences to nothing
        set change grep preferences to nothing
        --FORMAT HYPERLINKS
        set include footnotes of find change grep options to false
        set include hidden layers of find change grep options to false
        set include locked layers for find of find change grep options to false
        set include locked stories for find of find change grep options to false
        set include master pages of find change grep options to true
        set find what of find grep preferences to "http://.+?(?=</url> <linked text>)"
        set change to of change grep preferences to ""
        set applied character style of change grep preferences to nothing
    tell specSheet
            set myFoundItems to find grep
            set linkURL to get myFoundItems
        end tell
        set find what of find grep preferences to "(?<= <linked text>).+?(?=</lt>)"
        tell specSheet
            set myFoundTextLinks to find grep
            set linkNames to get myFoundTextLinks
        end tell
        set masterList to {}
        set numItems to count of linkURL
        set n to 1
        repeat numItems times
            set end of masterList to {item n of linkURL, item n of linkNames}
            set n to (n + 1)
        end repeat
        tell specSheet
            repeat with currentLink in masterList
                set hyperLinklocation to item 2 of currentLink
    try
                    set hyperLink1 to make hyperlink URL destination with properties {name:item 2 of currentLink as string, destination URL:item 1 of currentLink as string}
                on error
                    set hyperLink1 to hyperlink URL destination (item 2 of currentLink as string)
                end try
                try
                    set hyperLinkText to make hyperlink text source with properties {source text:hyperLinklocation, hidden:false, applied character style:character style "hyperlink"} --name:item 2 of currentLink as string,
                on error
                    set hyperLinkText to hyperlink text source (item 2 of currentLink as string)
                end try
                try
                    make new hyperlink with properties {destination:hyperLink1, source:hyperLinkText, hidden:false} --name:item 2 of currentLink as string}
                on error
                    make hyperlink with properties {destination:hyperLink1, source:hyperLinkText, hidden:false}
                end try
            end repeat
            --set linksDone to "true"
        end tell
        set myFoundItems to {}
        set myFoundTextLinks to {}
    end tell
    tell application "Adobe InDesign CS5"
        --REMOVE MARKUP -URLS FROM COPY
        set find grep preferences to nothing
        set change grep preferences to nothing
        --Set the find options.
        set include footnotes of find change grep options to false
        set include hidden layers of find change grep options to false
        set include locked layers for find of find change grep options to false
        set include locked stories for find of find change grep options to false
        set include master pages of find change grep options to true
        set find what of find grep preferences to "<url>.+?</url> "
        set change to of change grep preferences to ""
        tell specSheet
            change grep
        end tell
        --Clear the find/change preferences after the search.
        set find grep preferences to nothing
        set change grep preferences to nothing
        --display dialog "URL text deleted."
        --LINKED TEXT TAGS REMOVAL AND CHARACTER FORMAT
        set find grep preferences to nothing
        set change grep preferences to nothing
        --Set the find options.
        set include footnotes of find change grep options to false
        set include hidden layers of find change grep options to false
        set include locked layers for find of find change grep options to false
        set include locked stories for find of find change grep options to false
        set include master pages of find change grep options to true
        set find what of find grep preferences to "<linked text>|</lt>"
        set change to of change grep preferences to ""
        --set applied character style of change grep preferences to "hyperlink"
        tell specSheet
            change grep
        end tell
        --Clear the find/change preferences after the search.
        set find grep preferences to nothing
        set change grep preferences to nothing
        --display dialog "Linked text tags removed, style applied."
    end tell

  • How can I make a text box in Aperture transparent??

    Hello,
    After a great trip to Thailand I want to make a book of all my pictures using Aperture 3. At some places in the book I use a title to indicate what will be shown on the image. This title is made by the text box and it is put on the image itself. Now what I would like is to make is a transparent bar of the text box, so that I still can see the details of the image through this bar and also read the text about the image easily.
    I have no problems making this text box and putting it in the right place, the thing that I don't understand, after two nights of trying, is how to make this text box transparent.
    Any help is appreciated!
    Thanks in advance!

    Perhaps I need to reformulate what I exactly want to do...!
    I would like to use transparent text boxes but not as transparent as the image itself. I want to show the text box as a real bar but slightly different than the original image colour. So something between a normal image and a white bar so that it will be a bit transparent but also shown as a real bar..
    I think the text boxes of each theme are identical, so yes you are right about the transparent text boxes of art collection but they are the same as photo essay.
    Do you understand what I mean?

  • Hyperlinks from InDesign to Acrobat

    I am using CS3 programs on a PC on Windows XP
    I'm trying to create hyperlinks in InDesign. When I export the document to a pdf, I clicked "include interactive elements." However, in Acrobat, it only makes the email addresses or web addresses active. The regular sentences and images that I linked are not active. Any suggestions? Thank you.

    ah, I didn't notice the hyperlinks box as I was focusing on "interactive elements." Thanks!

  • How to make a text "drawer" in iWeb

    Does anyone know how to make a text "drawer" in iWeb? What I mean is when you click on a hyperlink to read more text, but instead of opening up a new page, it makes the text appear below the link on the same page.

    Anything fancy with iWeb has to be done in the HTML Snippet or after publishing the page.
    Find the code for the drawer, apply it and show us the result.
    Perhaps not the drawer you had in mind but this is something near:
    http://www.wyodor.net/Ajax/
    Here's another one with drawer in the title:
    http://jqueryfordesigners.com/slide-out-and-drawer-effect/
    http://jqueryfordesigners.com/demo/plugin-slide-demo.html
    Found with : [text drawer|http://www.google.com/search?client=safari&rls=en&q=text+drawer&ie=UTF-8 &oe=UTF-8]

  • Global change to the size of a text frame in InDesign 5.5?

    Is there a way to make a global change to the size of a text frame in InDesign 5.5? I just laid out a book and the size needs to go up half an inch.

    If you have worked properly and have done following:
    Set up Masters with margins and columns,
    Aligned all text frames with the margins,
    Turned on Layout Adjustment,
    You will only change the margins on the Master and it will change every page.
    If not …
    you have to do it manually.

  • How to create a retro 3d text effect in indesign Cs6?

    Hello, i need to know how to make this retrolift 3d text effext in indesign.

    http://indesignsecrets.com/making-long-shadows-indesign.php

  • How to make a text variable (running header - character) resize a text frame?

    I have successfully been able to get a metadata text variable to auto-resize a text frame, but when I change the text variable to a running header-character/paragraph variable, the text frame does not resize - in fact it gets smaller and squashes the text.
    Surely if Indesign can handle one kind of variable it should handle another??
    Please help!

    Thanks all.
    Will- I tried adding another character to the text box but this made no difference.
    Eugene- I'm trying to avoid the purchase of any 3rd party plugins due to budget constraints.
    I realised that all I needed to do was use a wide paragraph rule to emulate a box behind the text, and make the text box long enough to hold all possible variables.
    One other issue has now cropped up, the running header (character) only grabs the text up to the first return, but I need it to grab all text formatted with the Character Style (2-3 lines max).
    I require a forced line break in the title (where the header is being pulled from) as it has a paragraph rule style attached, requiring a full return for each line of the title.
    Any ideas?

  • Importing multipage Word document w/hyperlinks into InDesign

    I am new to InDesign and I am trying to import a 11 page Word document with hyperlinks into InDesign. For the life of me, I can not figure this out. I try to "put" the file into InDesign but it just imports as a tiny box. Two questions:
    1. Does anyone know how to import a Word document where everything is left intact - formatting, line spacing and hyperlinks?
    2. Can anyone recommend a good resource for beginners? Trying to learn the software is very challenging.
    Thanks in advance for our help!

    Matt: The 11 pages of information from Word still have to be laid out to 11 pages (or whatever) in InDesign. The little box you're talking about is a text box you either created before the Place command (with the text cursor waiting inside it) or created when you clicked the "loaded" cursor after the Place command.
    You need to resize the box and link it to other boxes for the text to flow from one box to another. This can be a fairly automated procedure once you understand how to work in InDesign; it would require that you have your document designed with, say, a Master Page design, and then different choices of click, shift-click, cmd-click do different things: fill a single text box, fill "threaded" (connected) text boxes on pages you've created, or automatically create new pages as necessary to accommodate all the info you've brought in with the Place command.
    s.

  • Text Hyperlink from PDF (converted Word doc) to specific Excel cell in same Portfolio

    Good Morning,
    I have created a Word document with an embedded Excel sheet (both Office 2007) and created a text hyperlink within the document that points to a specific cell on a specific tab. My company wants to send our document to a customer, but will only send PDFs. When converting to PDF the hyperlink does not work any longer.
    To make the behaviour in Word one must open the embedded Excel object to the specific sheet and then copy the specific cell in question. In Word choose Paste as Hyperlink. Press Alt+F9 and then change HYPERLINK to hyperLINK. Press Alt+F9. Edit the Settings of the Hyperlink and change the Text to Display.
    Is there a way to do this with Acrobat 10? The plus side would be that the Excel document would not be embedded in Word although it would still need the Document ID of the Excel file in the portfolio. Futhermore, the Word document won't be included in the portfolio.

    While Acrobat cannot pass opening parameters to non-PDF files it can do so for PDF (under specific circumstances).
    See the "Parameters for Opening PDF Files" document at:
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open _parameters_v9.pdf 
    Be well...

  • How can I remove the text hyperlink blue color/visited color?

    Just a quick one if anyone can answer.
    How do I remove or change the color of text hyperlink? For instance if I have some navigation text how can I make it show as
    a solid color instead of the hypertext blue coloring? Also how do I remove the visited link color?
    I want to do this so I just have the text color change when I mouse/hover over it which I already have done.
    I have an example of what I am talking about. Example 1 is my text and example 2 is what I want to achieve. thanks in advance
    for any help...

    The following tutorials may help you understand how to style links and descendant classes:
    http://www.thepattysite.com/linkstyles1.cfm
    http://www.projectseven.com/tutorials/pseudoclasses/index.htm
    Descendant selectors:
    http://www.projectseven.com/tutorials/css/pseudoclasses/page3.htm
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/
    http://twitter.com/nadiap

  • I cannot figure out how to make the text larger on an incoming email.  The finger method doesn't work and I cannot find any toolbar with which to do it.  I could find nothing in settings also.  Plese help and thank you.

    I cannot figure out how to make the text larger in a received email.  The finger method doesn't work and I can find no tool bar as I can for composing emails.  I can find nothing in settings.  Please help and thank you in advance.

    Hi there,
    Download a piece of software called TinkerTool - that might just solve your problem. I have used it myself to change the system fonts on my iMac. It is software and not an app.
    Good wishes,
    John.

Maybe you are looking for

  • Adapter engine empty in Integration Directory

    Hi when I try to create a Business System in Integration Directory and I am configuring the communication channel (for example File Adapter or RFC ) the field "Adapter Engine" is empty and has no selection to choose from. Is there a problem in config

  • Issue with Scale base routines in Pricing

    Hi All,                 This is regarding one issue I am facing in Invoice creation. It happens randomly in some invoices (impact is in <5 % of invoices) that a discount condition value is incorrectly calculated when created through batch job. This i

  • Invalid memory access of location error when exporting for iOS

    I have been recently been asked to convert a flash application for us on the iPad. When I try to publish the .ipa file I end up with the following error: Invalid memory access of location 0xceip=0x55492db4 I have no idea what might cause this and my

  • Properties panel in Adobe Dreamweaver

    How do I display the properties panel once it has been closed?

  • Text in field reference key does not appear in FBL3N

    Dear Expert, Can you tell me why reference key's content (text) in FI document doesn't appear when I execute FBL3N? Thanks and Regards, YL