(Msg. 1) Posted: Wed Oct 22, 2008 2:31 am
Post subject: RTF with external images as .doc Archived from groups: microsoft>public>word>conversions (more info?)
Hi
I would like to convert a rtf file with a bunch of *.png files
(referenced from the document) into a single .doc file, so that I can
send it as a single file.
I could not find any option anywhere to embedded those image into
the document. They stay as external references whatever I try.
(Msg. 2) Posted: Thu Oct 23, 2008 1:58 am
Post subject: Re: RTF with external images as .doc [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
On Oct 23, 2:32 am, "Klaus Linke" <i....RemoveThis@fotosatz-kaufmann.de> wrote:
> "mathieu" <mathieu.malate....RemoveThis@gmail.com> wrote:
> > I would like to convert a rtf file with a bunch of *.png files
> > (referenced from the document) into a single .doc file, so that I can
> > send it as a single file.
>
> > I could not find any option anywhere to embedded those image into
> > the document. They stay as external references whatever I try.
>
> Not sure what you tried already... Did you display field codes (either in
> Tools > Options > View, or using ALt+F9)?
> If you then see INCLUDEPICTURE fields, you can remove the \d switch, then
> update fields (F9) and save.
>
> Or you could get rid of the fields altogether by unlinking them (...select
> the picture, Ctrl+Shift+F9), though that would be permanent, and I'd
> probably rather just remove the switch.
hi Klaus,
When I tried the Ctrl+Shift+F9 (after a Ctrl+A) it removed my table
summary (or make it useless). I really need the action on the external
images only and not *all* external references.
(Msg. 3) Posted: Thu Oct 23, 2008 2:32 am
Post subject: Re: RTF with external images as .doc [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
"mathieu" <mathieu.malaterre RemoveThis @gmail.com> wrote:
> I would like to convert a rtf file with a bunch of *.png files
> (referenced from the document) into a single .doc file, so that I can
> send it as a single file.
>
> I could not find any option anywhere to embedded those image into
> the document. They stay as external references whatever I try.
Not sure what you tried already... Did you display field codes (either in
Tools > Options > View, or using ALt+F9)?
If you then see INCLUDEPICTURE fields, you can remove the \d switch, then
update fields (F9) and save.
Or you could get rid of the fields altogether by unlinking them (...select
the picture, Ctrl+Shift+F9), though that would be permanent, and I'd
probably rather just remove the switch.
(Msg. 4) Posted: Thu Oct 23, 2008 12:25 pm
Post subject: Re: RTF with external images as .doc [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
> hi Klaus,
>
> When I tried the Ctrl+Shift+F9 (after a Ctrl+A) it removed my table
> summary (or make it useless). I really need the action on the external
> images only and not *all* external references.
>
> Thanks
That isn't what Klaus suggested. If you want to process the whole document
in a single operation then you are going to have to use a macro to
selectively unlink the INCLUDEPICTURE fields eg
Sub ChangeField()
Dim strCodes As String
Dim iFld As Long
For iFld = ActiveDocument.Fields.Count To 1 Step -1
With ActiveDocument.Fields(iFld)
If .Type = wdFieldIncludePicture Then
.Unlink
End If
End With
Next iFld
End Sub
or remove the \d switch eg
Sub ChangeField2()
Dim strCodes As String
Dim iFld As Long
For iFld = ActiveDocument.Fields.Count To 1 Step -1
With ActiveDocument.Fields(iFld)
If .Type = wdFieldIncludePicture Then
.Code.Text = Replace(.Code.Text, "\d", "")
.Update
End If
End With
Next iFld
End Sub
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
All times are: Eastern Time (US & Canada) (change)
Page 1 of 1
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum