How To Automatically Loop Entire PPT AFTER The Title Slide - R - Powerpoint
How To Automatically Loop Entire PPT AFTER The Title Slide - R - Powerpoint
: r/powerpoint
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.
Add a comment
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
4 Reply Share
admx • 6y ago
PowerPoint User
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