You can access all the presentations that are open by their index numbers.
So to copy shapes from a specific slide you could use:
If Presentations(1).Slides(2).Shapes.Count > 0 Then
'Copy all shapes on the slide
Presentations(1).Slides(2).Shapes.Range.Copy
' Paste into the active slide
ActiveWindow.Selection.SlideRange.Shapes.Paste
End If
Regards,
Shyam Pillai
Image Importer Wizard
http://skp.mvps.org/iiw.htm
"quiquejbb" <(E-Mail Removed)> wrote in message
news:c91dec3c-202e-4cd0-8ffd-(E-Mail Removed)...
> Hey there,
>
> I am trying to programatically copy all the contents of a specific
> slide of a non-active presentation (powerpoint) into the current slide
> of my active presentation.
>
> If anyone can help me out with this I would really appreciate it.
>
> All the best