bottom
Great WordTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > WordTips Home > Online and Web > Web Capabilities > Making Live URLs Into Normal Text

Making Live URLs Into Normal Text

Summary: Do active URLs in your document drive you crazy? There are a number of different ways you can change those linked URLs into regular text. This tip describes three of the fastest and most common methods. (This tip works with Microsoft Word 97, Word 2000, Word 2002, and Word 2003.)

Word, being the well-connected program that it is, has a feature that automatically converts a URL into a hyperlink. While you can turn off the feature so that Word doesn't do the conversion, you may have documents that already contain the link fields. That, or you may get a file from someone else who did not disable the feature. In these instances, you may be looking for ways in which to remove the existing hyperlinks. There are several ways you can approach this problem.

The first (and easiest) way to remove the hyperlinks is to simply position the insertion pointer somewhere within the link and then press Ctrl+Shift+F9. This converts the field code back to regular text, without the link. In fact, if you don't use fields elsewhere in your document, you can remove every hyperlink by simply selecting the entire document (press Ctrl+A) and then pressing Ctrl+Shift+F9. You should realize, however, that if there are other fields in your document, this action results in them being converted to plain text as well.

You can also use a menu-based technique to remove your hyperlinks. If you are using Word 97, you need to follow these steps:

  1. Right-click the hyperlink you want to remove. Word displays a Context menu.
  2. Choose the Hyperlink option, then choose Edit Hyperlink from the submenu.
  3. Word may now prompt you to save your document before editing your hyperlink. You can save it if desired, but it is not absolutely necessary.
  4. The Edit Hyperlink dialog box is now displayed. (Click here to see a related figure.) Click on the Remove Link button in the lower-left corner of the dialog box.

If you are using Word 2000, you can follow the above steps, but following these steps will be a bit easier:

  1. Right-click the hyperlink you want to remove. Word displays a Context menu.
  2. Choose the Hyperlink option, then choose Remove Hyperlink from the submenu.

In Word 2002 and Word 2003 it is even easier: Right-click the hyperlink you want to remove and choose Remove Hyperlink from the Context menu.

If you have quite a few documents where you need to remove hyperlinks, then even these simple suggestions can become tedious after a while. In this instance you may want to create a macro to do the work for you. The following macro, RemoveHyperLinks, removes all the hyperlinks in a document and makes sure that the AutoFormat feature for creating hyperlinks is turned off:

Sub RemoveHyperlinks()
    While ActiveDocument.Hyperlinks.Count > 0
        ActiveDocument.Hyperlinks(1).Delete
    Wend
    Application.Options.AutoFormatAsYouTypeReplaceHyperlinks = False
End Sub

This macro does not harm any other fields within your document.

Tip #1068 applies to Microsoft Word versions: 97 | 2000 | 2002 | 2003


Find and Replace Almost Anything! Learn the ins and outs of the powerful search engines available in Word. Learn to search for and replace text, formatting, graphics, and special characters the easy way with WordTips: Find and Replace.

Helpful Links

Ask a Word Question
Make a Comment

Tips.Net Home
Vital News Home

WordTips FAQ
WordTips Premium

Learn Access Now

Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

 

Great Info!

Get tips like this every week in WordTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)