Reputation: 2105
Powerpoint has an event SlideShowNextSlide
which is triggered just before the slide show transitioned to the next slide.
What is the event that is triggered after the slide show has transitioned to the next slide?
Upvotes: 0
Views: 137
Reputation: 14809
You'll want to bookmark this page from Chirag Dalal:
http://www.officeoneonline.com/vba/events_version.html
I'm not sure that the specific event you're looking for exists.
But something like this might do the job:
Sub OnSlideShowPageChange(ByVal Wn As SlideShowWindow)
MsgBox Wn.View.Slide.SlideIndex
End Sub
This event fires during a slide show when the slide changes to either next slide or previous slide.
Upvotes: 1