Run Macro During Presentation Loop

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

Guest

I have a presentatin that loops through the presentation (browsed on a kiosk
mode). I have a macro that updates the links for the graphs and tables. I
would like to have this macro run every time the presention finishes going
through all the slides and loops back to the first.

Is this possible? Any suggestions are appreciated!

Thanks,
DJP
 
I do not know anything about a kiosk mode. In a slide show mode, which should
be very similar (I guess) it is possible. You can write a short VBA code
using standard events like SlideShowBegin, SlideShowNextSlide and
SlideShowEnd. You know the number of slides in your loop, so say using
SlideShowNextSlide Event, you can insert your updating code (or macro) into
an if statement like “if the current slide number equals to the last slide
number in the loop, do updatesâ€.
Hope it helps.
 
I have a presentatin that loops through the presentation (browsed on a kiosk
mode). I have a macro that updates the links for the graphs and tables. I
would like to have this macro run every time the presention finishes going
through all the slides and loops back to the first.

If you're letting the user control the show, you can go at it a bit differently
and I think you can get it to work:

Suppose you have an intro slide at the beginning of the presentation and on it
there's a button like "Start Show"

When the user clicks "Start show" that runs your update macro, then moves to
the next slide.
 

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