Discuss WordPipe, ExcelPipe and PowerPointPipe. Get help with installation and running, notify us of bugs, request new features and enhancements.
Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators
-
DataMystic Support
- Site Admin
- Posts: 2229
- Joined: Mon Jun 30, 2003 12:32 pm
- Location: Melbourne, Australia
-
Contact:
Post
by DataMystic Support »
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
Code: Select all
Sub ConvertFloatingToInline()
'
For Each iShape In ActiveDocument.Shapes
iShape.ConvertToInlineShape
Next iShape
End Sub