VBA - add kiosk mode?

  • Thread starter Thread starter Geoff Cox
  • Start date Start date
G

Geoff Cox

Hello,

I would like to test out the kiosk mode in loads of ppt files.

Can anyone point me at VBA code to do this?

Cheers

Geoff
 
Hello,

I would like to test out the kiosk mode in loads of ppt files.

Can anyone point me at VBA code to do this?

To do what, exactly, Geoff?

Set a roomful of them to kiosk mode en masse, or open one, set it to kiosk and
play it while you watch or something else entirely?
 
To do what, exactly, Geoff?
Set a roomful of them to kiosk mode en masse, or open one, set it to kiosk and
play it while you watch or something else entirely?

Steve,

the roomful en masse - that's the one!

Geoff
 
Steve,

the roomful en masse - that's the one!

Let's see. You've already got working code to do XXX to the roomful of
presentations, so all you need is the XXX.

With ActivePresentation.SlideShowSettings
.ShowType = ppShowTypeKiosk
End With

(there are more things you can include in settings ... start the recorder do Slide
Show, Setup Show, make your desired settings, stop the recorder.
 

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