Thread: [Solved] Get rid of links
View Single Post
 
Old 04-18-2017, 09:42 AM
Lrrryo
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by louiseL View Post
Hi,Lrrryo

If you you mean the hyperlinks, here are 3 ways you can try.

1. You can just copy the whole text and paste them as “Unformatted Text”. This will remove all links.

Works good, would be nice if I could assign a key to do that without edit/paste special/unformatted

2.Use “Replace” Feature
Pressed “Alt + F9” to change to the “Link” view--->Type “^d HYPERLINK” in “Find what” text box-->click “Replace All"

Confusing, and this is Mac, no Alt

3.Use Macro
The code is below:

Code:
Sub RemoveLinks()
    While ThisDocument.Hyperlinks.Count > 0
     ThisDocument.Hyperlinks(1).Delete
   Wend
 End Sub
Give me a heads up on how use macros. Use to use them in letters and things, copy addresses to envelope, add date, etc., but forgot how. Link to a tutorial? Thanks

Hope it helps.
About comments in bold.
Reply With Quote