Macro to next slide

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to use a macro to advance a presentation to the next frame. I know I can do this by mouse click or by using an action button but I specifically require the code to do it programmatically

Any help would be great

Regard
Andy
 
SlideShowWindows(1).View.Next should do the trick for you.


--
Bill Dilworth, Microsoft PPT MVP
===============
Please spend a few minutes checking vestprog2@
out www.pptfaq.com This link will yahoo.
answer most of our questions, before com
you think to ask them.

Change org to com to defuse anti-spam,
ant-virus, anti-nuisance misdirection.
..
..

Andy said:
I want to use a macro to advance a presentation to the next frame. I know
I can do this by mouse click or by using an action button but I specifically
require the code to do it programmatically.
 
Or, if you want to specify a slide to go to (for example, Slide 3):

ActivePresentation.SlideShowWindow.View.GotoSlide (3)
 
ActivePresentation.SlideShowWindow.View.Nex

Navigating from slide to slide is discussed in Chapter 6 of my book

--Davi

David M. Marcovit
Author of _Powerful PowerPoint for Educators
http://www.loyola.edu/education/PowerfulPowerPoint

----- Andy wrote: ----

I want to use a macro to advance a presentation to the next frame. I know I can do this by mouse click or by using an action button but I specifically require the code to do it programmatically

Any help would be great

Regard
Andy
 
Back
Top