SlideShowsWindows(i)

  • Thread starter Thread starter K J Boland
  • Start date Start date
K

K J Boland

Is there a way in a macro to return the index number of the current
SlideShowsWindows ?

I would use this to return to a selected slide show having branched off so
that (i)
in the SlideShowWindows(i) could be a variable rather than a fixed (1)

Sub RememberWhere()
' Make the MOUSEOVER action of your navigation buttons run this
ReturnToSlide = SlideShowWindows(1).View.Slide.SlideIndex
End Sub


Sub GoBack()
' Make this the MOUSECLICK action of the Return to button
SlideShowWindows(1).View.GotoSlide (ReturnToSlide)
End Sub
 
KJ,

I suspect you will have better luck using the SlideShowWindows object,
rather than attempting to control the enumerated items.


--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
http://billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
vestprog2@ Please read the PowerPoint FAQ pages.
yahoo. They answer most of our questions.
com www.pptfaq.com
..
 
Back
Top