L
Lofty Becker
I've got a macro - I think originally provided by John McGhie (thanks!)
to remove all hyperlinks from a document:
Dim i As Long
For i = ActiveDocument.Hyperlinks.Count To 1 Step -1
ActiveDocument.Hyperlinks(i).Delete
Next i
End Sub
This works fine for hyperlinks in the text of the document, but doesn't
touch hyperlinks in footnotes.
Is there some way to modify it (or just write a separate macro) that
will clear out the hyperlinks in footnotes?
-Lofty
to remove all hyperlinks from a document:
Dim i As Long
For i = ActiveDocument.Hyperlinks.Count To 1 Step -1
ActiveDocument.Hyperlinks(i).Delete
Next i
End Sub
This works fine for hyperlinks in the text of the document, but doesn't
touch hyperlinks in footnotes.
Is there some way to modify it (or just write a separate macro) that
will clear out the hyperlinks in footnotes?
-Lofty