Reputation: 51
I have copied a picture from another slide and now want to paste it into a blank (picture or content) placeholder on the active slide. I'll loop through the shapes looking for such a blank placeholder, but can it then be coded to paste the picture into the placeholder? I don't know how to code that part, if it's even possible.
Thanks, Mel Turco
Upvotes: 0
Views: 1183
Reputation: 56
After selecting the chosen Placeholder use
ActiveWindow.View.Paste
Upvotes: 1
Reputation: 23
if you already copied why not simply paste it?
ActivePresentation.Slides(slidenum).Shapes(copiedimage).Copy
ActivePresentation.Slides(slidenum).Shapes(placeholdernum).Select
ActivePresentation.Slides(slidenum).Shapes.Paste
this code works for me.
first line copies image, as shape, second selects place holder in which image should be pasted, and third one pastes it in selected placeholder
Upvotes: 1