Prev: Small picture then text?
Next: MLA Formatting
From: roystongrange on 7 Mar 2010 09:15 I want to remove all the hyperlinks from some copied text. I have seen all the answers which say to - Ctrl-A Ctrl-shift-F9 I tried it but can't get it to work. Ctrl-A selects all the text, but the Ctrl-shift-F9 does nothing. I've checked and my keyboard has the function keys switched on as function keys! It just leaves the text highlighted, then when unhighlighted, hovering over the hyperlinks still produces a link.
From: Doug Robbins - Word MVP on 7 Mar 2010 16:58 Ctrl+Shift+F9 will unlink the hyperlink so that it no longer works. To complete the transformation, you can reformat the font in the hyperlink so that it is the same as the rest of the text. Or, if you want to delete all trace of them, you can run a macro containing the following code: Dim i As Long With ActiveDocument For i = .Hyperlinks.Count To 1 Step -1 .Hyperlinks(i).Delete Next i End With -- Hope this helps. Please reply to the newsgroup unless you wish to avail yourself of my services on a paid consulting basis. Doug Robbins - Word MVP, originally posted via msnews.microsoft.com "roystongrange" <roystongrange(a)discussions.microsoft.com> wrote in message news:95733A5B-D8BF-4584-821D-779A8EF41D1D(a)microsoft.com... > I want to remove all the hyperlinks from some copied text. I have seen all > the answers which say to - > Ctrl-A > Ctrl-shift-F9 > I tried it but can't get it to work. Ctrl-A selects all the text, but the > Ctrl-shift-F9 does nothing. I've checked and my keyboard has the function > keys switched on as function keys! It just leaves the text highlighted, > then > when unhighlighted, hovering over the hyperlinks still produces a link.
From: Russell Brogan on 17 Mar 2010 02:15 *If you right click the hyperlink, there is an option that says remove hyperlink. If you highlight the document, you should only need to do this once. You can then choose a different font style to remove the hyperlinked underlines. Hope this helped. :) "roystongrange" wrote: > I want to remove all the hyperlinks from some copied text. I have seen all > the answers which say to - > Ctrl-A > Ctrl-shift-F9 > I tried it but can't get it to work. Ctrl-A selects all the text, but the > Ctrl-shift-F9 does nothing. I've checked and my keyboard has the function > keys switched on as function keys! It just leaves the text highlighted, then > when unhighlighted, hovering over the hyperlinks still produces a link.
From: Russell Brogan on 17 Mar 2010 02:21 "Russell Brogan" wrote: *If you right click the hyperlink, there is an option that says remove hyperlink. *If you highlight the document, you should only need to do this once. You can then choose a different font style to remove the hyperlinked underlines. Hope this helped. :) > "roystongrange" wrote: > > > I want to remove all the hyperlinks from some copied text. I have seen all > > the answers which say to - > > Ctrl-A > > Ctrl-shift-F9 > > I tried it but can't get it to work. Ctrl-A selects all the text, but the > > Ctrl-shift-F9 does nothing. I've checked and my keyboard has the function > > keys switched on as function keys! It just leaves the text highlighted, then > > when unhighlighted, hovering over the hyperlinks still produces a link.
|
Pages: 1 Prev: Small picture then text? Next: MLA Formatting |