[presentation].slideshowsettings.run VBA

T

the Duke

I am running Mac Office 2004.
If I want to run two presentations consecutively with the
slideshowsettings.run command, how do I prevent the second show
interrupting the first. If I put the two run commands directly after
each other the second command takes over and doesn't allow the first
presentation to finish.

tim
 
S

Steve Rindsberg

The Duke said:
I am running Mac Office 2004.
If I want to run two presentations consecutively with the
slideshowsettings.run command, how do I prevent the second show
interrupting the first. If I put the two run commands directly after
each other the second command takes over and doesn't allow the first
presentation to finish.


Strictly aircode, but give this a try:

' Start first show

While SlideShowWindows(1).View.State = ppSlideShowRunning
DoEvents
Wend

' Start second show

================================================
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
 

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

Top