Interesting - If you add text to an autoshape then it should be possible to
convert the shape to a frame, however if you change the wrap option of the
autoshape top in-line the convert to frame button becomes greyed and then
may not become available again if you convert back to 'in front of text'.
If the wrap of the autoshape is 'in front of text' the following macro
should convert the selected shape to a frame then remove the frame.
http://www.gmayor.com/installing_macro.htm
With Selection
.ShapeRange(1).ConvertToFrame
.Frames.Delete
With .ParagraphFormat
.Borders(wdBorderLeft).LineStyle = wdLineStyleNone
.Borders(wdBorderRight).LineStyle = wdLineStyleNone
.Borders(wdBorderTop).LineStyle = wdLineStyleNone
.Borders(wdBorderBottom).LineStyle = wdLineStyleNone
End With
End With
I would strongly urge you to attack the autoshapes one at a time as changing
them all at once (which could be achieved easily enough with a small
modification to the macro) is likely produce an even bigger mess to sort
out.
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site
www.gmayor.com
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>