A
androo...
I have the following macro to convert shapes to InLine shapes but I can't
see which shape is selected. How can I scroll to the selected shape on
screen?
Sub Obj_floating_to_inline()
On Error Resume Next
Dim myShape As Variant
Dim convertMsg As Variant
For Each myShape In ActiveDocument.Shapes
myShape.Select
convertMsg = MsgBox("Do you want to convert this to an InLine
shape?", vbQuestion + vbYesNo, "Convert?")
If convertMsg = vbYes Then
myShape.ConvertToInlineShape
End If
Next
End Sub
Thanks,
androoooooooo...............
see which shape is selected. How can I scroll to the selected shape on
screen?
Sub Obj_floating_to_inline()
On Error Resume Next
Dim myShape As Variant
Dim convertMsg As Variant
For Each myShape In ActiveDocument.Shapes
myShape.Select
convertMsg = MsgBox("Do you want to convert this to an InLine
shape?", vbQuestion + vbYesNo, "Convert?")
If convertMsg = vbYes Then
myShape.ConvertToInlineShape
End If
Next
End Sub
Thanks,
androoooooooo...............