Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.word.newusers
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.word.newusers
|
|||
|
|||
![]()
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" wrote in message ... 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. |
#3
![]()
Posted to microsoft.public.word.newusers
|
|||
|
|||
![]()
*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. |
#4
![]()
Posted to microsoft.public.word.newusers
|
|||
|
|||
![]() "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. |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I remove several hyperlinks at once? | Microsoft Word Help | |||
Remove ALL hyperlinks in a document in one go. | Microsoft Word Help | |||
remove underline from hyperlinks | Microsoft Word Help | |||
how do you remove all hyperlinks at once | Microsoft Word Help | |||
Remove hyperlinks I can't see | Microsoft Word Help |