Re: Can I export hyperlinks from a word document to a simple list?
- From: "Doug Robbins - Word MVP" <dkr@xxxxxxxxxxxxxxxxxx>
- Date: Fri, 9 Dec 2005 22:31:37 +0100
Run a macro containing the following code when the document containing the
hyperlinks is the active document and it will create a new document
containing a list of the hyperlinks:
Dim source As Document, target As Document, hlink As Hyperlink
Set source = ActiveDocument
Set target = Documents.Add
For Each hlink In source.Hyperlinks
target.Range.InsertAfter hlink.Address & vbCr
Next hlink
--
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
"true" <true@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:BD4D33B6-2E31-4803-AF5B-47454237B592@xxxxxxxxxxxxxxxx
>I have a client-supplied document of over fifty pages with many, many
>links.
> I need to place these links into a design (Quark) layout. Can I export all
> of
> the links in the document into a simple listing rather than picking
> through
> all the copy paragraph by paragraph to copy and paste links?
.
- Prev by Date: Re: Way to hide text without hidden text font?
- Next by Date: Re: Way to hide text without hidden text font?
- Previous by thread: Re: Can I export hyperlinks from a word document to a simple list?
- Next by thread: Re: Printer
- Index(es):
Relevant Pages
|