select all pictures and rotate them 90 degree

J

John Smith

I have a file containing many many emoticons. Any way to select
all emoticons (all graphics) and rotate them 90 degree? Thanks.
 
S

spunkymuffmonkey

Hi John,

The following might be useful:

Sub RotateShape()

Dim iShapeCount As Integer

iShapeCount = ActiveDocument.Shapes.Count

For i = 1 To iShapeCount

ActiveDocument.Shapes(i).IncrementRotation -90#

Next i

End Sub

Regards
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top