0% found this document useful (0 votes)
51 views3 pages

How To Automatically Loop Entire PPT AFTER The Title Slide - R - Powerpoint

kjjlk

Uploaded by

Hakeem Zck
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
51 views3 pages

How To Automatically Loop Entire PPT AFTER The Title Slide - R - Powerpoint

kjjlk

Uploaded by

Hakeem Zck
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

5/7/24, 6:56 PM How to automatically loop entire PPT AFTER the Title Slide?

: r/powerpoint

Skip to main content 1


r/powerpoint Search in r/p… Create

r/powerpoint • 6 yr. ago


c2cali

How to automatically loop entire PPT AFTER the Title Slide?


Question
Hi, I have a presentation Thursday in which I want the title slide to sit there for about 5 minutes. Then I want to
click once, and have the rest of the slides loop through for an hour... I know how to auto advance slides every
custom number of seconds, but how do I get the last slide to automatically loop back to Slide 2 and then so
forth and so on, skipping slide 1? Automatic being the key word, I will be busy not paying attention and cannot
click any hidden hyperlinks etc. I'd rather not make the file 300 MB by copying and pasting the same 24 slides
over and over again either, to create an hours worth, if possible.

3 7 Share

u/superai_conf • Promoted

Join industry leaders, heads of state, entrepreneurs, researchers, and curious minds at SuperAI, 5-6 June 2024 at the
iconic Marina Bay Sands in Singapore.

Register now for just US$399


Sign Up
superai.com

Add a comment

Sort by: Best

GlowingEagle • 6y ago

https://www.reddit.com/r/powerpoint/comments/7vizr9/how_to_automatically_loop_entire_ppt_after_the/ 1/3
5/7/24, 6:56 PM How to automatically loop entire PPT AFTER the Title Slide? : r/powerpoint

How do you get along with VBA? This code hides the first slide after it is shown, so it does not come up
Skip to main content 1
Create
again when the show loops. Click the "Developer" tab, the "Visual Basic" icon, and insert a ne module.
Copy/paste the code. To start the presentation, use the macro "ResetAndRun". I have guessed at the
timing, change as necessary. And Test!

Option Explicit
Public LoopCheck As String

Sub ResetAndRun()
Dim s As Slide
LoopCheck = "" ' initialize
' unhide first slide
ActivePresentation.Slides(1).SlideShowTransition.Hidden = msoFalse
' set all slides to 15 second timing, fix first slide later
For Each s In ActivePresentation.Slides
s.SlideShowTransition.AdvanceOnClick = msoTrue ' optional
s.SlideShowTransition.AdvanceOnTime = msoTrue
s.SlideShowTransition.AdvanceTime = 15 ' optional, remove or change
Next
' set first slide to 5 minutes (300 seconds)
ActivePresentation.Slides(1).SlideShowTransition.AdvanceTime = 300
' slideshow setttings
With ActivePresentation.SlideShowSettings
.LoopUntilStopped = msoTrue
.ShowType = ppShowTypeKiosk
.RangeType = ppShowAll
.Run
End With
End Sub

Sub OnSlideShowPageChange(ByVal SSW As SlideShowWindow)


If SSW.View.CurrentShowPosition = 2 Then ' now showing second slide
If LoopCheck <> "OK" Then ' first time
ActivePresentation.Slides(1).SlideShowTransition.Hidden = msoTrue
LoopCheck = "OK"
End If
End If
End Sub

4 Reply Share

admx • 6y ago
PowerPoint User

This is really great, nice job :)

1 Reply Share

lblb_lblb • 6y ago

Well done!

1 Reply Share

c2cali OP • 6y ago
https://www.reddit.com/r/powerpoint/comments/7vizr9/how_to_automatically_loop_entire_ppt_after_the/ 2/3
5/7/24, 6:56 PM How to automatically loop entire PPT AFTER the Title Slide? : r/powerpoint

Thank you! I'll give ya an upvote. I am savvy but haven't really messed with Macros. Given that1 it's for
Create
a presentation for a boss in which I won't be on site, I might opt to skip the above given that if it fails
my boss won't have a clue how to get back on track. But it seems you have helped many!!
Appreciated.

1 Reply Share

admx • 6y ago
PowerPoint User

I found another solution ;) Go to the "Slide show" tab, "custom slide show", "new", and voilá!
https://puu.sh/zhNU7/f50df59380.png

1 Reply Share

c2cali OP • 6y ago

I am not sure how this would work? Is there a way to hit play on slide one, and then have the final
slide automatically open this custom show which begins with slide 2?

1 Reply Share

admx • 6y ago
PowerPoint User

Here you wouldn't be able to have it loop automatically, but to set it up manually that the slides
repeat themselves. Kind of like you mentioned, duplicating the slides, but different. If it works with
vba, great! Just wanted to share this method which I found by accident, and remembered your
question.

1 Reply Share

https://www.reddit.com/r/powerpoint/comments/7vizr9/how_to_automatically_loop_entire_ppt_after_the/ 3/3

You might also like