|
| View previous topic :: View next topic |
| Author |
Message |
Catherine Guest
|
Posted: Sun Dec 23, 2007 4:54 pm Post subject: combining several steps to screenshots |
|
|
I have many small screenshots. I want to make each one with a 'square'
layout, then with a line around the shot, then make a shadow on the lower
right. Is there a way to do this with one macro so I don't have to touch
each screenshot 3 times? |
|
| Back to top |
|
 |
Google Sponsor

|
Posted: Sun Dec 23, 2007 4:54 pm Post subject: Advertisement |
|
|
|
|
| Back to top |
|
 |
Helmut Weber Guest
|
Posted: Sun Dec 23, 2007 5:56 pm Post subject: Re: combining several steps to screenshots |
|
|
Hi Catherine,
there are shapes (shaperanges) and inlineshapes.
Though I am no good at graphical issues, ...
Sub Macro2()
Selection.InlineShapes(1).ConvertToShape
Selection.ShapeRange.Line.Visible = msoTrue
Selection.ShapeRange.Line.Weight = 0.5
Selection.ShapeRange.WrapFormat.Type = wdWrapSquare
' which seems to be the default wrapformat anyway
End Sub
I don't know about the shadow.
I can't find a way to create one,
except creating a rectangle of the same size
and placing it behind the actual picture.
But that would be too much effort.
Note that you can't repeat that macro on the same
picture, as it isn't an inlineshape anymore.
Once it is a shaperange, you can use the macrorecorder
to delve into that subject further.
--
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Vista Small Business, Office XP |
|
| Back to top |
|
 |
Catherine Guest
|
Posted: Sun Dec 23, 2007 6:44 pm Post subject: Re: combining several steps to screenshots |
|
|
Helmut, thanks so much!
"Helmut Weber" wrote:
| Quote: | Hi Catherine,
there are shapes (shaperanges) and inlineshapes.
Though I am no good at graphical issues, ...
Sub Macro2()
Selection.InlineShapes(1).ConvertToShape
Selection.ShapeRange.Line.Visible = msoTrue
Selection.ShapeRange.Line.Weight = 0.5
Selection.ShapeRange.WrapFormat.Type = wdWrapSquare
' which seems to be the default wrapformat anyway
End Sub
I don't know about the shadow.
I can't find a way to create one,
except creating a rectangle of the same size
and placing it behind the actual picture.
But that would be too much effort.
Note that you can't repeat that macro on the same
picture, as it isn't an inlineshape anymore.
Once it is a shaperange, you can use the macrorecorder
to delve into that subject further.
--
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Vista Small Business, Office XP
|
|
|
| Back to top |
|
 |
Graham Mayor Guest
|
Posted: Mon Dec 24, 2007 6:22 am Post subject: Re: combining several steps to screenshots |
|
|
Word 2007's graphic tools would allow you to add shadows, however if you are
intending working a lot with screen shots, you should investigate SnagIt
from www.techsmith.com This will easily do all you require and far more.
There is a fully working trial and you can see some of the results in the
many illustrations on my web site.
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Catherine wrote:
| Quote: | Helmut, thanks so much!
"Helmut Weber" wrote:
Hi Catherine,
there are shapes (shaperanges) and inlineshapes.
Though I am no good at graphical issues, ...
Sub Macro2()
Selection.InlineShapes(1).ConvertToShape
Selection.ShapeRange.Line.Visible = msoTrue
Selection.ShapeRange.Line.Weight = 0.5
Selection.ShapeRange.WrapFormat.Type = wdWrapSquare
' which seems to be the default wrapformat anyway
End Sub
I don't know about the shadow.
I can't find a way to create one,
except creating a rectangle of the same size
and placing it behind the actual picture.
But that would be too much effort.
Note that you can't repeat that macro on the same
picture, as it isn't an inlineshape anymore.
Once it is a shaperange, you can use the macrorecorder
to delve into that subject further.
--
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Vista Small Business, Office XP |
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|