You couldn't just change the option temporarily when you're going to be
doing this sort of thing? There are several options that I have to change
temporarily for specific tasks (such as disabling "Capitalize the first
letter of a sentence" when I'm working on a dictionary).

Signature
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
True, except that this would only solve this one problem, when in
practice "In front of text" is much more convenient for me in the
larger scheme.
In other words, in just about every other instance where I paste a
image into a document, I want to be able to move it around, which is
why I have the default set to In front of text.
I wonder if I should write a macro and assign it to a button which I
can use to paste the images "in line" for this process, but leave the
default for all other pastes.
I'll need to work on that.
Thanks for planting the seed...
On 13 Mar, 09:55, "Graham Mayor" <gma...@REMOVETHISmvps.org> wrote:
> It would appear to make more sense to insert such picture in-line?
>
[quoted text clipped - 26 lines]
>
> - Show quoted text -
DerbyDad03 - 13 Mar 2008 17:38 GMT
Oh yes, I certainly could. This might work for me...
2 buttons to set the option should I want to toggle it, and the Close
event to ensure it gets reset to my default when I close Word.
Sub In_Line()
Options.PictureWrapType = wdWrapMergeInline
End Sub
Sub In_Front()
Options.PictureWrapType = wdWrapMergeFront
End Sub
Private Sub Document_Close()
Options.PictureWrapType = wdWrapMergeFront
End Sub
If I knew a way to display the current option setting in the toolbar,
maybe by changing the button name via code, I could use a single
toggling macro instead of the 2 individual ones. Something else to
play with...
Thanks!
> You couldn't just change the option temporarily when you're going to be
> doing this sort of thing? There are several options that I have to change
[quoted text clipped - 57 lines]
>
> - Show quoted text -