Here is a word macro that converts all floating images to inline. To install it, try here: http://www.gmayor.com/installing_macro.htm
Code: Select all
Sub ConvertFloatingToInline()
'
For Each iShape In ActiveDocument.Shapes
iShape.ConvertToInlineShape
Next iShape
End Sub