Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 12-25-2013, 01:25 AM
macropod's Avatar
macropod macropod is offline Fetch images from URLs automatically Windows 7 32bit Fetch images from URLs automatically Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Assuming they're active hyperlinks and the document contains no other hyperlinks, you could use a macro like:
Code:
Sub Demo()
Application.ScreenUpdating = False
Dim i As Long, Rng As Range, StrAddr As String
With ActiveDocument
  For i = .Hyperlinks.Count To 1 Step -1
    Set Rng = .Hyperlinks(i).Range
    StrAddr = Chr(34) & .Hyperlinks(i).Address & Chr(34)
    .Fields.Add Rng, Type:=wdFieldIncludePicture, Text:=StrAddr, PreserveFormatting:=False
  Next
End With
Application.ScreenUpdating = True
End Sub
For macro installation & usage instructions, see: http://www.gmayor.com/installing_macro.htm
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
How do MS Office products link to URLs? stegraham Office 2 10-22-2013 04:52 AM
Images stretching to margins automatically Ulodesk Word 3 08-13-2012 10:39 AM
Fetch images from URLs automatically URLs in citations acappella Word 3 07-24-2012 03:28 PM
Automatically update web images on Powerpoint thetodd14 PowerPoint 0 05-04-2011 10:37 AM
mailmerge with custom URLs? guthrie Mail Merge 0 03-06-2011 08:39 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 10:44 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft