Remove Hyperlink

I have a form that has an email address in the text field.  I do not want the hyperlink to work.  I right clicked on the text and selecting Remove Hyperlink and this did not work.
This works only if I remove the email wording before the URL address.  For example:  "You may contact us at 555-123-4567 or email: [email protected]

This is a setting in the users version of Reader (under Edit ... Preferences ... General ... "Create links from URLs).
We can't update this setting so I don't think you can do any better than the solution you have come up with.
The insert hyperlink option in Designer allows you to create a hyperlink out of any text.
Regards
Bruce

Similar Messages

  • How to remove hyperlink in Reports Region

    How to remove hyperlink in a Report region (Based on some filter condition)
    Example : In Report Region, I am getting value as 10, 20, 30, 0, 44, 55, 0
    In the above value, I need to remove the hyperlink for 0 values.
    Can anyone help me to resolve this issue.
    Thanks in advance.
    Regards
    Balaji S

    If you want a link column for values other than 0 and a blank for those with 0 then the best way to do this is to use a case or a decode to return a LINK image or text to a hidden column; I usually return the Edit icon only. You can then use the 'column link' region on a different column to create a link in the usual way and set the Link Text to the hidden column (e.g. #EDIT# in the example below). If you have set the target page to require a Checksum this will then be added without having to code it into your sql. E.g.
    SELECT some_columns, 
      CASE WHEN numcol != 0 THEN '<img src="#IMAGE_PREFIX#e2.gif" alt="">'
      ELSE null
      END "EDIT"
    FROM your_tableIf you want the same column value, but those of 0 to not have a link and those other than 0 to have a link then you need to code the link into your sql. e.g.
    SELECT some_columns, 
      DECODE (numcol,0,numcol,'<a href="f?p=&APP_ID.:11:&SESSION.::&DEBUG.:11::">'||numcol||'</a>') "EDIT"
    FROM your_table# = your URL e.g f?p=&APP_ID.:11:&SESSION.::&DEBUG.:11::
    If you require a checksum on the link you need to add the apex_util.prepare_url function to the URL.
    Cheers
    Shunt

  • How to remove hyperlinks in a word document

    how to remove hyperlinks in a word document

    Go to your "Insert" drop down menu.
    Select "Hyperlink", near or at bottom.
    You will get this dialog box:
    Look at the lower left corner... see the button "Remove Link"?
    Click on it...and hit the "OK" button in the lower right...
    Since this was a Word question, and not a Mac Pro question, it would have been better to post it here http://www.msofficeforums.com/word/

  • How do you remove hyperlinks?

    has "Numbers" received an update recently? maybe I missed it. but i can no longer remove hyperlinks from a cell.
    I still want the URL there -- but in plain text format -- but i don't want a working hyperlink. I used to be able to left-click on the cell and a little box came up, where you could amend the text, and remove the link -- nice and easy.
    But when you click on the link now, all it does is open up Safari and takes you straight to the page
    I've highlighted the cell, the text, and searched through all the menus, but there doesn't seem to be any way to remove the hyperlink. All you can do is type the whole thing out again, which can take ages when you've got a long URL
    anyone got any ideas?

    Hello
    If you wish, you may also try a script given at the end of the following thread.
    How to convert hyperlinks to url
    https://discussions.apple.com/thread/4544519?tstart=0
    https://discussions.apple.com/message/20522031
    Regards,
    H
    PS. Under OS X 10.9, you need to change the ruby interpreter at the beginning of main.rb from:
    #!/usr/bin/ruby
    to:
    #!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
    For convenience, here I post the entire revised codes, which can be used under OSX 10.5 through 10.9.
    hyperlink to url.applescript
        convert hyperlink to url in selection in Numbers
        save this as script bundle or application bundle and
        put ruby script in its Contents/Resources with the name used in this script, e.g., main.rb
    _main()
    on _main()
        script o
            property _prompt : "Hyperlink to URL - options:"
            property _options : {"0 : kill links", "1 : kill links but keep styles", "2 : keep links alive"}
            property _default : 0
            -- (1) copy the current selection to clipboard
            tell application "System Events"
                tell process "Numbers"
                    set frontmost to true
                    keystroke "c" using {command down}
                end tell
            end tell
            delay 0.1 -- may need to adjust
            -- (2) convent links to urls by modifying rtf data in clipboard
            -- -- (2.0) accept conversion option
            tell application "Numbers"
                set r to choose from list _options with prompt _prompt default items {_options's item (1 + _default)}
            end tell
            if r is false then error number -128
            set _option to r's item 1's character 1 as integer
                0 = replace links with urls and kill the links discarding links text colour and underline style
                1 = replace links with urls and kill the links preserving links text attributes
                2 = replace links with urls and keep the links alive
            -- -- (2.1) invoke Contents/Resources/main.rb with _option argument
            set rbf to (path to resource "main.rb")'s POSIX path
            do shell script rbf's quoted form & " " & _option
            -- (3) paste the edited rtf to the current selection
            tell application "System Events"
                tell process "Numbers"
                    set frontmost to true
                    keystroke "v" using {command down}
                end tell
            end tell
        end script
        tell o to run
    end _main
    main.rb
    #!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
    # file
    #    main.rb
    # function
    #    convert hyperlinks to urls in rtf data in clipboard
    require 'osx/cocoa'
    include OSX
    def hyperlink_to_url_pboard(option=0)
        #    int option :
        #        0 = replace links with urls and kill the links discarding links text colour and underline style
        #        1 = replace links with urls and kill the links preserving links text attributes
        #        2 = replace links with urls and keep the links alive
        raise ArgumentError, "invalid option: #{option}" unless [0,1,2].include? option
        # get rtf data from clipboard
        pb = NSPasteboard.generalPasteboard
        data = pb.dataForType('public.rtf')
        # make mutable attributed string from rtf data
        docattr = OCObject.new
        mas = NSMutableAttributedString.alloc.objc_send(
            :initWithRTF, data,
            :documentAttributes, docattr)   
        # replace hyperlinks with url strings, optionally preserving or discarding existing attributes
        tr = NSMakeRange(0, mas.length)
        while tr.length > 0
            er = NSRange.new
            url = mas.objc_send(
                :attribute, NSLinkAttributeName,
                :atIndex, tr.location,
                :longestEffectiveRange, er,
                :inRange, tr)
            if url != nil
                if option <= 1
                    # kill the link
                    mas.objc_send(
                        :removeAttribute, NSLinkAttributeName,
                        :range, er)
                end
                if option == 0
                    # remove foreground colour from link
                    mas.objc_send(
                        :removeAttribute, NSForegroundColorAttributeName,
                        :range, er)
                    # remove underline style from link
                    mas.objc_send(
                        :removeAttribute, NSUnderlineStyleAttributeName,
                        :range, er)
                end
                # replace anchor text with url string
                href = url.absoluteString
                mas.objc_send(
                    :replaceCharactersInRange, er,
                    :withString, href)
                # adjust ranges in case href and anchor have different length
                delta = href.length - er.length
                er.length += delta
                tr.length += delta
            end
            tr = NSMakeRange(NSMaxRange(er), tr.length - er.length)
        end
        # clean up modified attributed string
        r = NSMakeRange(0, mas.length)
        mas.fixAttributesInRange(r)
        # make rtf data from mutable attributed string
        data = mas.objc_send(
            :RTFFromRange, r,
            :documentAttributes, docattr)
        # copy rtf data to the clipboard
        pb.objc_send(
            :declareTypes, ['public.rtf'],
            :owner, nil)
        pb.objc_send(
            :setData, data,
            :forType, 'public.rtf')
    end
    # main
    option = ARGV[0].to_i
    hyperlink_to_url_pboard(option)

  • Can't Remove Hyperlink

    I have a number of text frames on a page. For some of them, the text they contain should be a hyperlink (to another site page); for the others, they should not be hyperlinks.
    When I need to change text from being a hyperlink to not being one, I select the entire text and click the "x" to the right of the "Hyperlink" combo box in the toolbar. The text in the box changes to "Add or filter links". However, when I republish the site the link is still there. If I go back to selecting the text in question (i.e. the text which needs to be changed to no hyperlink) I sometimes see vestiges of the old link in the Hypertext combo box, sometimes I'll see it if I click somewhere in the text, sometimes I won't. Regardless, no matter how many times I select the text and click the "x", the hyperlink remains when the site is published.
    As a test, I deleted the text frame and the text it contains, added a new frame in the same place and the hyperlink was gone. However, I have a lot of text frames, precisely placed, and I don't want to have to do this multiple times. Besides, I'm not certain that if I make a hyperlink I'll be able to remove it in the future.
    Has anyone else seen this kind of behavior?
    v7.2, Build 232, CL 779928.
    Thanks in advance.

    Vinayak:  Well, your suggestion helped finally resolve the issue but there are still aspects of it I'm not comfortable with (not your fault, of course). For example, even after I selected the hyperlinked text and cleared the hyperlink reference, I could still click various points in the text with the text tool and the hyperlink reference would reappear.
    Regardless, yes, the textbox WAS linked, I selected it and cleared the hyperlink reference; however, the underlining of the text still appeared when I previewed the page (although the "hand" didn't materialize, indicating the hyperlink was removed). I had to manually go into the States panel and clear the Rollover formatting. Once I did those things (selected the textframe, cleared the hyperlink reference, cleared the "Rollover" formatting in the States panel), things previewed fine. I'm not going to go back in and click the text to see if the hyperlink reference reappears, I don't care at this point.
    Thanks for your help.

  • Removing hyperlink border around image/auto forward

    I made an image on a webpage into a hyperlink. However, I would like to remove the visual hyperlink border...the one that is blue before you visit it, and purple afterwards. How can I do this?
    And on a related note, how can I set the hyperlink to automatically move to the linked page after a certain amount of time, say 10 seconds? Thanks in advance for your help.

    I made an image on a webpage into a hyperlink. However, I would like to remove the visual hyperlink border...the one that is blue before you visit it, and purple afterwards. How can I do this?
    Add this to your CSS -
    a img { border:none; }
    And on a related note, how can I set the hyperlink to automatically move to the linked page after a certain amount of time, say 10 seconds?
    You'd have to have the onclick attribute of the anchor tag call a delaying javsacript routine that only releases after 10 seconds.  It's bound to be confusing, though.

  • How to Remove Hyperlink Lookup Column

    Thank you in advance for the assistance. Our firm is running a SharePoint 2013 Public Site. One of our pages contains a web part with a SharePoint custom list. One of the columns in the custom list is a look-up column. The content in the look-up column is a
    hyperlink to the data from the parent list. When a user clicks on the link, it takes the user to the parent. We wish to remove the hyperlink functionality. How can we display the look-up column content as normal text without the hyperlink?

    Hi,
    You can edit your lookup column to add multiple columns from parent (under the column settings 'add a column to show each of these additional fields'). Then the new fields will be titled as 'parent:fieldname' without link. Now, you need to hide the original
    lookup link column from the view and rename the 'parent:fieldname' to valid title. So the link field will be gone and the additional parent field will be in the view without link.
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • Removing Hyperlinks from an Adobe Muse CC site

    Hello,
    I built this site in adobe Muse CC 2014
    NextGenFranchising.org
    It seems to be having some redirecting issues and directing to a ww3 site.
    In the Hyperlinks portion of the top menu within Muse, it still lists all of the hyperlinks. Is it possible to remove all of the hyperlinks listed in the site and replace or update them?
    Thank you for your help.
    Best wishes, David

    Ah, you want to delete not really the hyperlinks, but the linked files! That is quite easy!
    • Open the assets panel and click onto the "sort" icon.
    • Look for the category "upload". There you will find all your upload-files listed.
    • Clicking on one of these files activates the thrash icon.
    • Click onto the thrash icon and the file will no longer be uploaded.

  • Remove hyperlinks from links inside email

    I was wondering if you could create an exchange transport rule that would check all incoming email for hyperlinks, if it seen one, it would remove the hyperlink and change it just into text.

    Hello,
    Please try to build a transport agent to remove all HTML links from an incoming SMTP messages. And you need to use Visual Studio to realize it.
    You can refer to the "Setting up the Environment" section in the following blog:
    http://blogs.technet.com/b/exchange/archive/2013/01/21/how-to-write-an-exchange-2013-transport-agent.aspx
    If you have any feedback on our support, please click
    here
    Cara Chen
    TechNet Community Support

  • Removing hyperlinks from InDesign when exporting to PDF

    I have an InDesign file with no hyperlinks set up that contains text which are URLs (for example, it includes the text www.google.com but NOT a hyperlink to that URL). I need the file to be set up that way because I am not allowed to publish PDFs that contain active links. Every time I export the InDesign file to a PDF the hyperlinks become active in the PDF. This happens whether or not the "Include...  Hyperlinks" box is checked. The Hyperlinks window is empty. Any advice on how to keep this from happening or how to remove the links from the PDF?
    Thanks!
    Laura

    Did you post this yesterday in another thread? The answer hasn't changed.
    Reader and Acrobat, by default, in newer versions scan text for text strings look like URLs and automatically will set them to be links to the address that is found (valid or otherwise). This is not behavior that you can control in ID. It can be turned off in the Acrobat prefs by the user, but you can't force them to do it.

  • Change or remove hyperlinked button mouseover text

    I am trying to find a way to remove or change the mouseover text for button hyperlinks. The form is located at http://www.etsu.edu/finaid/Forms/staffordlenderselection0708.pdf . The hyperlink buttons are located at the end of each bullet point. They have been configured to appear as ordinary hyperlinked text. I would greatly appreciate any advice regarding this issue. Thanks.

    Joel, I have used a workaround method in Designer 7.1.2 to remove the mouseover text. In your case, complete your sentence by adding the word Online to your sentence. Underline and change the color as needed. On the button, remove the caption, and place the button overtop your word. Under the Accessibility tab, change the Screen Reader Preference to None. I don't know if this will work in 8+.

  • Remove hyperlink list

    Hy,
    First, I'm french an please excuse me for the "bad" written...
    So, I work under Word2004 for Mac.
    I would like to erase the list of the hypertext links wich appears in the drop-down list when I go to this place :
    Word/insertion/hyperlink/
    then appears a white line, on the right there is a double arrow. When I click above, a list of old hypertext links appears. I want to remove all the links.
    How can it be done ?
    (I think that this list is preserved somewhere in safari or in a library of the system ?!
    thank you for your invaluable help !
    riri

    Try http://www.officeformac.com/ProductForums/Word/

  • Removing hyperlinks in imported texts

    Sometimes I import text from Wikipedia. The text contains hyperlinks to other pages in Wikipedia. They are marked in blue as hyperlinks. I would like to change them to regular text without the blue. Any suggestions?

    When pasting in text from any source that has hyperlinks, try using Paste & Match Style. This usually let's me avoid the hyperlinks I then have to clean up. Of course, you need to have hyperlink recognition disabled in preferences first.
    For text you've already pasted you could select all & then cut then Paste & Match Style.
    Message was edited by: Peggy

  • Acrobat 9 - Hyperlinks don't work after optimizing.

    Acrobat 9.5 on Mac: hyperlinks go away after Optimizing.  I use Quark 9, and after exporting to make the PDF, I have a large file size.  When I open the PDF in Acrobat, all my hyperlinks created in Quark work. Then I use Optimizer to reduce the file size, and the hyperlinks go away.  How can I keep them live without going back through and manually linking them to a webpage?

    I can confirm that behavior in Acrobat 9 Pro (and in Acrobat X Pro as well!). I unchecked all the options in the Optimize dialog except for changing Images (unchecking all the options to discard various kind of data). It should not remove hyperlinks but it does. I've never notice (or heard about that) before.
    I would tweak your PDF settings in QuarkXPress to reduce file size (or downsample images ahead of time if Quark is not capable of doing that).

  • Hyperlinks don't work with Reader 9 with PDF/a

    Reader 8 and below in PDF/a mode with hyperlinks works just fine.. Upgrade to 9 and say good by to working hyperlinks! I would disable PDF/a mode but then Excel will not embed some of my type 1 fonts... Word gives the option to convert to bitmap if it can't embed... Why did Adobe change Reader v 9 to disable hyperlinks in PDF/a documents!!! they should have left it alone.. help anyone?

    Hello!
    If Hyperlinks are not allowed at all in PDF/A then i wonder why Hyperlinks of "HTTP://..." are working in PDF/A documents created from Word with Adobe 9.1.3 Pro but Hyperlinks of "DDD://..". are removed from the PDF file.
    Adobe implement something that seems to me to be not consistent.
    I double checked your statement regarding the PDF/A standard with someone of the PDF/A commitee attendants.
    The response was that removing Hyperlinks has nothing to do with the PDF/A standard.
    The relevant standard chapter is:
    6.5.3 Handling of GoToR, URI and SubmitForm Actions
    While permitted to be present in a conforming file, there are three types of actions for which a conforming interactive reader shall provide special treatment – the GoToR, the URI and the SubmitForm actions. The conforming interactive reader shall provide a mechanism to display the F and D keys of a GoToR action dictionary, the URI key of a URI action dictionary, and the F key of a SubmitForm action dictionary.
    In addition, since the actual invocation of these three actions by a conforming interactive readers involves the locating of and interacting with other files that may or may not be conforming, the reader may choose to not allow the actual invocation of these actions.
    NOTE For purposes of archival disclosure of the complete information content of conforming files, it is important for interactive readers to provide some mechanism to expose the destination of such actions. However, this part of ISO 19005 does not prescribe any specific behaviour or the technical implementation details that interactive readers might use to meet these functional requirements.
    I would suggest to clarify the PDF/A standard and improve your current implementation.
    Best wishes,
    R.Bornheim.

Maybe you are looking for

  • Podcasts in a playlist only play one at a time instead of in seq

    I just got a 6G nano iPod. I have smart playlists that include my favorite podcasts in reverse time sequence. When I play from this list, only one episode at a time will play.  After the episode completes then the iPod goes back to the playlist where

  • EDI1(vendor confirmation price) in PO can set to green light?

    I have setup the condition EDI1 for the vendor confirmed price. I set as default, when I create PO, the EDI1 condition will show up in the condition tab with price 0. But I found out that EDI1 condition is in "Red light" in stead of green light. Alth

  • Configuration documentation for idoc type PEXR2001 & idoc type FIDCCH01

    Is there any documentation for SAP configuration that needs to be done to get an outgoing PEXR2001 Idoc created?  This is the payment file Idoc.  We are trying to send this IDoc to a 3rd party, and I don't know how to get it created from the payment

  • Approval Preview to be defaulted to Table for Shopping cart

    Hi All, The Approval preview needs to be defaulted as table instead of graphic in BBPSC01 (Extended Form). We are using SRM 4.0 - SAPKIBKS13. Your inputs will help in resolving this issue.Business wants this be done on priority. Regards K Gp

  • Why does Lion open everything each time I start my MacBook?

    Every time I turn on my MacBook, Lion opens my calendar, email, my virtual computer, etc.  Each time I shutdown, I uncheck "Reopen windows when logging back in".  The next time I startup, all is well, but then the next time I shutdown, the "Reopen wi