R
RodneyB
In PowerPoint, the user can select any slide and start the slideshow starting
at that slide. With the 'loop continuously until "Esc"' checkbox ticked, and
slides advancing using time, the slideshow eventually loops back to slide #1
-not the slide that was selected before the start. Eg. if a presentation has
5 slides and the user selects #3 and starts the slideshow, the slides would
progress as follows;
3, 4, 5, 1, 2, 3, 4, 5,...
I simply want to do this programatically but have not had any success. I
have tried many things including setting
PowerPointPresentation.SlideShowSettings.RangeType = ppShowSlideRange;
PowerPointPresentation.SlideShowSettings.StartingSlide = 3;
but the result is that the SlideShow loops back to slide 3, not 1
eg. 3, 4, 5, 3, 4, 5,...
Do you have a code snippet that shows how it is done?
Thanks!
at that slide. With the 'loop continuously until "Esc"' checkbox ticked, and
slides advancing using time, the slideshow eventually loops back to slide #1
-not the slide that was selected before the start. Eg. if a presentation has
5 slides and the user selects #3 and starts the slideshow, the slides would
progress as follows;
3, 4, 5, 1, 2, 3, 4, 5,...
I simply want to do this programatically but have not had any success. I
have tried many things including setting
PowerPointPresentation.SlideShowSettings.RangeType = ppShowSlideRange;
PowerPointPresentation.SlideShowSettings.StartingSlide = 3;
but the result is that the SlideShow loops back to slide 3, not 1
eg. 3, 4, 5, 3, 4, 5,...
Do you have a code snippet that shows how it is done?
Thanks!