Move object with text - change default

  • Thread starter Francosayitlikeitis
  • Start date
F

Francosayitlikeitis

It is annoying not to mention time consuming to have to keep accessing Format
Auto-shape - Layout - Advanced, to de-select the 'Move object with text'
check box.
This becomes necessary every time objects are grouped.
All the best
 
G

Graham Mayor

It is not too difficult to create a macro to group selected shapes and
de-select the check box in one operation e.g.

Sub GroupAndLock()
With Selection.ShapeRange
On Error Resume Next
.Group.Select
.RelativeHorizontalPosition = _
wdRelativeHorizontalPositionColumn
.RelativeVerticalPosition = _
wdRelativeVerticalPositionPage
End With
End Sub

http://www.gmayor.com/installing_macro.htm


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top