Goto Slide number

  • Thread starter Thread starter sanj
  • Start date Start date
S

sanj

Hi,

I'm using a macro to goto a slide but if the user adds a slide inbetween the
macro will goto the wrong slide, is it possible to goto / 'lock' to a
particular slide?

Regards,

Sanj
 
The SlideId Property is the unique value for a slide. From the SlideID you
get the slideindex for the slide and jump to the appropriate slide.
 
Shyam,

This is what I am looking for, could you please help figuring out:

if my SlideId is Slide113, how do code to jump to that particular slide?

Regards,

Sanj
 
I would name the slide in question (using code like Example 8.7 on my
site) and jump to the named slide:

ActivePresentation.SlideShowWindow.View.GotoSlide _
ActivePresentation.Slides("Insert Slide Name Here").SlideIndex

If you have named the slide "Insert Slide Name Here" this should take you
there.

--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.loyola.edu/education/PowerfulPowerPoint/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top