![]() |
#1
|
|||
|
|||
![]()
I have an .html document with 147 images. The images reside in a separate /images directory. When I convert the .html to .doc, the images in the .doc are automatically linked to the /images directory. I want the images embedded in the .doc, so I can have one single file and not have to worry about keeping the /images directory.
Is there a way to tell Word to embed the images that are currently linked to a different directory? Maybe there's an option in Word similar to how you can embed fonts? |
#2
|
||||
|
||||
![]()
You can break the links via Edit>Links>break Link. Alternatively, you could use a macro like:
Code:
Sub BreakLinks() Dim i As Long With ActiveDocument On Error Resume Next For i = .InlineShapes.Count To 1 Step -1 .InlineShapes(i).LinkFormat.BreakLink Next For i = .Shapes.Count To 1 Step -1 .Shapes(i).LinkFormat.BreakLink Next End With End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
njcloud | Mail Merge | 23 | 02-04-2020 02:00 PM |
![]() |
TomBrooklyn | Word | 1 | 09-03-2011 05:42 AM |
Maintain form field when converting to HTML | lenknlogs | Word | 0 | 08-04-2011 02:21 PM |
Converting an image created in Word to a jpeg | VIC73 | Drawing and Graphics | 1 | 02-17-2010 10:58 AM |
Editing or Converting an Image in Word | DavidWell | Word | 0 | 01-22-2009 11:30 AM |