Ending a slideshow without clicking

  • Thread starter Thread starter marie.ricketts
  • Start date Start date
M

marie.ricketts

Hi,

I want to create a slideshow in VBA, inserting text into the slides
programmatically. I want this newly created slide show to loop for a
specific number of time or for a specific period of time and then I want to
recreate the slideshow.

How can I get the VBA code to continue to loop when the slide show ends
without a click from the user?

Thank you!
 
There are some options:

1) In the slides show set-up (or using code, if building the show remotely),
check the Loop until escape. The will, believe it or not, loop the show
until you hit escape. This method will not count the number loops or stop
at a given time.

2) Create a macro in the presentation that checks the slide number each time
a slide changes (see event captures). When it get to the end, send it back
to the beginning, increment a counter, check a clock, etc.
**Make PPT respond to events
http://www.rdpslides.com/pptfaq/FAQ00004.htm


Do either of these help your situation?

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