Run Macro During Presentation Loop

D

DJP

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
 
J

JanAdam

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.
 
Top