How go to next slide in edit mode using macro ?

  • Thread starter Jerry Adriane Gonçalves
  • Start date
J

Jerry Adriane Gonçalves

Hi.

Is there any way to go to next slide in edit mode using some macro (VBA)
statement ?

How could do this ?

Thanks in advance,

Jerry
 
K

Keith Tromer

ActivePresentation.Slides(ActiveWindow.Selection.SlideRange(1).SlideIndex
+1).Select
 
Top