The following code snippet returns the current slide index when the Slide view is active:
iCurrentIndex = ActiveWindow.View.Slide.SlideIndex
What’s the equivalent for when the SlideSorter view is active? I want to create a new slide using VBA, and have it appear after the current slide. Using my current code, the iCurrentIndex always reverts to 0 (error trapping), which creates the slide out of order.
Thx.