Kiosk Mode, Window, and .pps

G

Guest

Is there anyway to play a powerpoint presentation in Kiosk mode in a window
at the same time instead of kiosk mode full screen? If this is possible,
will I also beable to save it as .pps?
 
C

Chirag

The following macro starts slide show in kiosk mode in a window:

---
Sub StartKioskShowInWindow()
With ActivePresentation.SlideShowSettings
.ShowType = ppShowTypeKiosk
.ShowType = 1000
With .Run
.Width = .Width * 2
.Height = .Height * 2
End With
End With
End Sub
---

See if it helps you get started.

- Chirag

PowerShow - View multiple PowerPoint slide shows simultaneously
http://officeone.mvps.org/powershow/powershow.html
 

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