Share via

Powerpoint Screen Shot while in Slide Show

Anonymous
2016-10-31T18:13:30+00:00

Hello Folks,

I have a powerpoint presentation with many interactions (color changes and text changes depending on which button is pushed. At some point during the presentation, I would like to capture the screen in a file (JPG) as is. I have a button on the bottom of the slide that I could run a macro "on click" but can't figure how to capture the screen shot and save as JPG to desktop while still in the presentation as I want to eventually continue the presentation. I do not want to exit the slide show and ave to reenter.

Thanks.

Microsoft 365 and Office | PowerPoint | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

2 answers

Sort by: Most helpful
  1. Steve Rindsberg 99,161 Reputation points MVP Volunteer Moderator
    2016-11-03T23:57:10+00:00

    Zachery's reply made the AHA bulb light up.

    His suggestion would only let you do one screen at a time.

    BUT

    As an example, have your button run this code:

    Sub PasteIt()

        ActivePresentation.Slides(1).Shapes.Paste

    End Sub

    For each screen you want to capture, press Alt + PrtScr then click the button to run the code.

    You'll probably want to paste to someplace other than Slide 1 (maybe a hidden slide at the end of the presentation, for example, or mod the code to add a new slide at the end each time you invoke the code then paste to the new slide).

    0 comments No comments
  2. Anonymous
    2016-11-01T02:53:31+00:00

    I don't know about a macro but you could try a simple print screen? That will capture the screen as it stands and put the image onto the clipboard. Then all you need to do is paste the image somewhere afterwards and save it down.

    0 comments No comments