Is slideshow running?

M

Markus

Hi NG,

Is there a way to tell if currently the slide show is running or not.
I was trying to use ActivePresentation.SlideShowWindow.View.State
but this gives me an exception when stopping the slide show.

Any help is greatly appreciated!

best regards,
Markus
 
J

John Wilson

Try:
If SlideShowWindows.Count < 1 Then
MsgBox "NOT RUNNING"
Else: MsgBox "RUNNING"
End If
 

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