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.

Similar Messages

  • How can we remove a specific hyperlink using Acrobat X Pro ?

    How can we remove a specific hyperlink using Acrobat X Pro ?

    If the link is a real annotation in the file, just switch to the link tool in Acrobat, select it and press Delete.
    The Acrobat Family will, by default, scan all the text in a PDF file and temporarily make any URL or email address into a hotlink. You cannot stop that from happening as it's a preference on the client side; the only solution would be to break the pattern by adding a hairline space next to the colon or the @ symbol.

  • How can I remove Firefox successfully and allow hyperlinks to work?

    I need to clear space on my PC and wish to remove Firefox. I tried this but then could not open any hyperlinks from e-mails in Outlook. I tried various options suggested on the Outlook help page but to no avail. How can I remove Firefox successfully and allow hyperlinks to work?

    Have you tried resetting your Default Browser back to IE, thru the Control Panel > Add / Remove Programs?

  • 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 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)

  • 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

  • How can I remove my account on an iPad and add an existing one

    how can I remove my account on an iPad and add an existing one

    Or, how can I change the account on an existing iPad without restoring / formatting it?

  • How can I remove LABELS from my gmail account?

    How can I remove unwanted LABELS from the side bar unsung gmail?

    I assume you're using GMail as your primary e-mail account?  Try this.  This is how I am setup.  Not only will it move all your contacts to your phone but any changes made in GMail or on the iPhone will be sync'd with the server.
    http://www.google.com/support/mobile/bin/answer.py?answer=138740
    Note... I think this will delete your existing contacts from your device.  You will want to use iTunes to back them up and get them imported into GMail before you sync your device wtih GMail.

  • How can we remove the scroll bars from the table?

    Hi,
    I have a dynamic table. Currently the table appears with the scroll bars. But there is a requirement that the scroll bar should not appear and the table should stretch in the entire page. How can this be achieved.
    Thanks in advance
    Nita

    Thanks Mohammad for the reply.
    Was able to remove the scroll bars by using only the styleClass as AFStretchWidth. But there is a default partition in middle of the page still? Can i remove that too by any way.

  • How can we remove the following zeros from quantity field ?

    Hi All.
    how can we remove the following zeros from quantity field while populating ALV by using FM REUSE_ALV_GRID_DISPLAY ?
    eg:getting output zqty = 2.000
    but i need           zqty = 2.
    help me to reslove this issue.
    Regards.
    jay

    Hi,
      While populating the field catlog do the following thing to   avoid zeros.
      wa_fieldcat-tabname = 'I_OUTPUT'.    " Curr
      wa_fieldcat-fieldname = 'FWAER'.
      wa_fieldcat-seltext_l = text-023.
      wa_fieldcat-no_zero = 'X'.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR  wa_fieldcat.
    Thanks,
    Khushbu.

  • How can we remove asterix from the amount

    i have problem wen i am trying to get amount it uis coming in this manner
    ***100000**
    how can i remove it
    pls let me know

    Here is one logic:
    data text type string.
    text = '**1000**'.
    replace all occurrences of '*' in text with ''.
    write text.
    Check out this link too:
    do not want asterix to be padded in left of currency value..
    Hope it helps you.

  • Can't remove my credit card from account.

    Why i can't remove my credit card from my account. when i remove credit card (select none)already after abt 5-10 min i check my account again my creditcardd will be appear. I try to remove from PC and on my iphone.

    Answered here:
    https://discussions.apple.com/message/24655077#24655077
    So, either do as directed, or don't get anything from the iTunes/app store.

  • How can we remove the key from the dataset which has json

    uid
    id
    Json
    4588
    51
    { "key": "1/0/234", "element1":{ "a":10 "b": "test1" } }
    4589
    52
    { "key": "1/0/234", "element1":{ "a":10 "b": "test1" } }
    4590
    53
    { "key": "1/0/234", "element1":{ "a":10 "b": "test1" } }
    I have the above dataset resulting from merge operation .
    UID -Integer data type
    ID- Integer data type
    Json- String data type holding json document
    How can I remove  the " key" element from the json field  and make my dataset look like 
    Expected output which will strip of key value pair from the json column
    uid
    id
    Json
    4588
    51
    { "element1":{ "a":10 "b": "test1" } }
    4589
    52
    { "element1":{ "a":10 "b": "test1" } }
    4590
    53
    { "element1":{ "a":10 "b": "test1" } }
    Mudassar

    Hello Mudassar,
    In SQL Server / T-SQL we don't have a native JSON support, so you would have to implement a solution on your own = parsing the string and remove the "Key" + it's value.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • How can we remove the commas from the Formula value in SAP BW BEx query

    Hi All,
    How can we remove the commas from the Formula value in SAP BW BEx query
    We are using the formula replacing with characteristic.The characteristic value needs to be display as number with out commas.
    Regards
    Venkat.

    Do you want to remove the commas when you run the query on Bex Web or in RSRT?
    Regards

  • How can i remove a card from iTunes ?

    How can i remove a card from iTunes ?

    If you want to remove a credit/debit card from your account then on your computer's iTunes you should be able to edit your payment info by going into the Store > View Account menu option and logging into your account, and on your account's details page there should be a payment link.  If you are doing it on your iOS device then tap on your id in Settings > iTunes & App Store and tap on 'View Apple ID' on the popup and log into your account  - that should also give you a payments link on your account's page.
    Changing payment info : Change or remove your payment information from your iTunes Store account (Apple ID)
    If you don't get the 'none' option on the payment details screen : Why can’t I select None when I edit my Apple ID payment information?

Maybe you are looking for

  • Vendor Aging Report to show zero balance does not show all vendors

    Hi all, I would like to see a list of all my vendors in the Vendor Aging Report. I clicked on show vendors with zero balance, however, I still only get a partial list of the vendors. Is there a setting I need to set to show all the vendors? Any advic

  • How do I set the imac to go to sleep after 5 min of in activity?

    how do I set the imac to go to sleep after 5 min of in activity?

  • Installing Log4J in Tomcat and using JDBC to log errors

    Has anyone figured out how to install Log4J in Tomcat and use the Log4J JDBC functionality? I have log4j.jar in CATALINA_HOME/common/lib. I also have log4j.properties is in CATALINA_HOME/common/classes Then when I start Tomcat I get the following err

  • Images fail to load completely

    I regularly visit a web site which displays many photographs. Often some of the images fail to load completely, I may see the top 30% of the image and the rest shows as a grey box. Pasting the same URL into Firefox, shows the whole image. Any ideas?

  • Error 1053 issue.

    Hi experts, I have installed SAP BODS 3.2 SP3 in Windows Server 2008 R2 64 bit O.S. When I am trying to open the Designer ( any other component) of SAP BODS it is throwing as error like ' Designer has stopped working'. When I went to services.msc--->