A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » Formatting Long Documents
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Unlinking large number of images with macro in Word 97



 
 
Thread Tools Display Modes
  #1  
Old December 17th, 2004, 05:40 PM
?yvind Blom
external usenet poster
 
Posts: n/a
Default Unlinking large number of images with macro in Word 97

I have a word document with 150 pages and 250 images. All the images
are linked from a sub-directory to the document and not saved within
the file. I want to split this file into serveral smaller documents
that are
to be published in Sharepoint 2003 with each image saved within the
file, nor extracted or outside.

The images are graphics formatted with text wrap (float over text)?
The only way to edit or remove the links is to (remove the "float")
under image properties. It is therefore impossible to select the
entire document CTRL + A and remove all links.

My problem arises when trying to automate this process. During macro
recording the item "remove float" is blanked out !

Am I doomed spending weeks on word, selecting 250 images manually ??
Or does anyone have a nice macro to share.

Thanks
Oyvind
  #2  
Old December 17th, 2004, 08:36 PM
Charles Kenyon
external usenet poster
 
Posts: n/a
Default

Try the following on a _copy_ of your document. AFAIK it unlinks all fields
in a document, regardless of whether they are in the body of the document or
elsewhere. Please report back on your results.

Sub FieldsUnlinkAllStory()
' All Story Field Unlinker
' Written by Charles Kyle Kenyon
' repaired with help from Jezebel 10 December 2004
Dim oStory As Range
On Error Resume Next
For Each oStory In ActiveDocument.StoryRanges
Do
oStory.Fields.Unlink
Set oStory = oStory.Next
Loop Until oStory Is Nothing
Next
End Sub
--

Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://www.mvps.org/word which is awesome!
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.

"?yvind Blom" wrote in message
om...
I have a word document with 150 pages and 250 images. All the images
are linked from a sub-directory to the document and not saved within
the file. I want to split this file into serveral smaller documents
that are
to be published in Sharepoint 2003 with each image saved within the
file, nor extracted or outside.

The images are graphics formatted with text wrap (float over text)?
The only way to edit or remove the links is to (remove the "float")
under image properties. It is therefore impossible to select the
entire document CTRL + A and remove all links.

My problem arises when trying to automate this process. During macro
recording the item "remove float" is blanked out !

Am I doomed spending weeks on word, selecting 250 images manually ??
Or does anyone have a nice macro to share.

Thanks
Oyvind



  #3  
Old December 17th, 2004, 09:18 PM
Jezebel
external usenet poster
 
Posts: n/a
Default

Not sure what you're getting at with the 'float' issue. As I understand it,
currently your document has some 250 { LINK .... } fields, each connected
to a graphic. You need to replace these fields with the same graphic
embedded. The fact that the graphic is floating is largely irrelevant (it
just means you're working with the Shapes collection rather than
InlineShapes).

This is doable by macro, but it's tricky to say the least. Roughly: iterate
the Shapes collection. For each one, store the size and position properties;
find the corresponding LINK field to get the filename; delete the field and
insert the graphic from file (ie, add it to the Shapes collection) and set
the size and position properties.

On balance, I think you're probably better doing it manually. It'll take a
day or so, but writing a macro that does this effectively will likely take
most of a day and you would still need to edit the document to fix the ones
that go wrong. At least by doing it manually you know the task is finite
(even if infinitely tedious). Find a teenager who needs to earn some pocket
money.





"?yvind Blom" wrote in message
om...
I have a word document with 150 pages and 250 images. All the images
are linked from a sub-directory to the document and not saved within
the file. I want to split this file into serveral smaller documents
that are
to be published in Sharepoint 2003 with each image saved within the
file, nor extracted or outside.

The images are graphics formatted with text wrap (float over text)?
The only way to edit or remove the links is to (remove the "float")
under image properties. It is therefore impossible to select the
entire document CTRL + A and remove all links.

My problem arises when trying to automate this process. During macro
recording the item "remove float" is blanked out !

Am I doomed spending weeks on word, selecting 250 images manually ??
Or does anyone have a nice macro to share.

Thanks
Oyvind



  #4  
Old December 17th, 2004, 11:13 PM
Suzanne S. Barnhill
external usenet poster
 
Posts: n/a
Default

I assume they're actually INCLUDEPICTURE fields. The field codes for these
fields cannot be displayed (and are therefore inaccessible to Find and
Replace) when graphics are wrapped.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Jezebel" wrote in message
...
Not sure what you're getting at with the 'float' issue. As I understand

it,
currently your document has some 250 { LINK .... } fields, each connected
to a graphic. You need to replace these fields with the same graphic
embedded. The fact that the graphic is floating is largely irrelevant (it
just means you're working with the Shapes collection rather than
InlineShapes).

This is doable by macro, but it's tricky to say the least. Roughly:

iterate
the Shapes collection. For each one, store the size and position

properties;
find the corresponding LINK field to get the filename; delete the field

and
insert the graphic from file (ie, add it to the Shapes collection) and set
the size and position properties.

On balance, I think you're probably better doing it manually. It'll take a
day or so, but writing a macro that does this effectively will likely take
most of a day and you would still need to edit the document to fix the

ones
that go wrong. At least by doing it manually you know the task is finite
(even if infinitely tedious). Find a teenager who needs to earn some

pocket
money.





"?yvind Blom" wrote in message
om...
I have a word document with 150 pages and 250 images. All the images
are linked from a sub-directory to the document and not saved within
the file. I want to split this file into serveral smaller documents
that are
to be published in Sharepoint 2003 with each image saved within the
file, nor extracted or outside.

The images are graphics formatted with text wrap (float over text)?
The only way to edit or remove the links is to (remove the "float")
under image properties. It is therefore impossible to select the
entire document CTRL + A and remove all links.

My problem arises when trying to automate this process. During macro
recording the item "remove float" is blanked out !

Am I doomed spending weeks on word, selecting 250 images manually ??
Or does anyone have a nice macro to share.

Thanks
Oyvind




  #5  
Old December 17th, 2004, 11:13 PM
Suzanne S. Barnhill
external usenet poster
 
Posts: n/a
Default

If you don't have any other fields in the document, you can Ctrl+A,
Ctrl+Shift+F9. This command will unlink all fields, however.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"?yvind Blom" wrote in message
om...
I have a word document with 150 pages and 250 images. All the images
are linked from a sub-directory to the document and not saved within
the file. I want to split this file into serveral smaller documents
that are
to be published in Sharepoint 2003 with each image saved within the
file, nor extracted or outside.

The images are graphics formatted with text wrap (float over text)?
The only way to edit or remove the links is to (remove the "float")
under image properties. It is therefore impossible to select the
entire document CTRL + A and remove all links.

My problem arises when trying to automate this process. During macro
recording the item "remove float" is blanked out !

Am I doomed spending weeks on word, selecting 250 images manually ??
Or does anyone have a nice macro to share.

Thanks
Oyvind


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
macro in word js General Discussion 1 December 28th, 2004 03:01 AM
Splitting large word 97 file with linked images ?yvind Blom General Discussion 1 December 8th, 2004 06:39 PM
How can I divide a page into three sections? Bonnie General Discussion 2 November 30th, 2004 05:21 PM
Word Perfect Macros to Word 2K or 2003 RichNRockvilleMD General Discussion 2 July 22nd, 2004 05:40 PM
Writing a book in microsoft word, instructions how, newtknight Formatting Long Documents 10 June 22nd, 2004 09:35 PM


All times are GMT +1. The time now is 02:52 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.