Convert MS Word floating images to inline images
Posted: Wed Jul 22, 2015 2:54 pm
WordPipe can only replace inline images, not floating images, so below is a macro to convert from floating to inline.
Here is a word macro that converts all floating images to inline. To install it, try here: http://www.gmayor.com/installing_macro.htm
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