screen shots

N

nathan

I am typing a document at the moment where i am using a
lot of screenshots. I find it a lot of hassle, as when I
try to edit the document and add in new screen shots, the
document goes haywire with screen shots dissapearing
everywhere. Is there anyway that I can set the size of the
screen shots so that as they are imported at the set size
and not the default size.
thanks
 
M

Mark Tangard

Hi Nathan,

No direct way I can think of, but you could accomplish this
with a small macro, assuming you want to resize the image
immediately upon pasting it:

Dim s As InlineShape, w As Single, h As Single
Set s = ActiveDocument.InlineShapes(ActiveDocument. _
InlineShapes.Count)
w = s.Width
h = s.Height
s.Width = InchesToPoints(4.5) ' <--use your desired width
s.Height = h * s.Width / w

For info on how to use a macro offered in a newsgroup, see
http://www.mvps.org/word/FAQs/MacrosVBA/CreateAMacro.htm
 

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