Re: PowerPoint Macro Recording?
Quote:
I hope I´m doing the right thing by posting the question here.
not really, you should have started a new thread, i will ask a moderator to fix, you are more likely to get a useful reply in a new thread
i do not use powerpoint or have it installed, but a quick google found https://stackoverflow.com/questions/...oint-using-vba
Code:
With ActivePresentation.Slides(3).Shapes(1)
.PictureFormat.CropLeft = 10
.PictureFormat.CropTop = 10
.PictureFormat.CropRight = 10
.PictureFormat.CropBottom = 10
End With
you will need to modify the first line to correctly specify each shape in turn, adding the width and centering required, should not be much of a problem
Re: PowerPoint Macro Recording?
Hey, Westconn, tks a lot for your reply :)
And for asking the moderator to fix my wrong post :blush:
I edit the macro on VBA but I can´t see it working - got a message saying that the macro can´t be found due to security settings. In
Powerpoint, I went to Macro Security > Macro configurations and checked the option "Enable all macros" (last one), so I have no clue what´s wrong :/
Anyway, I´m gonna try it again... Tks again for your help! :)