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?

Signature
Windows Microsoft Office 2003
Chirag - 25 Feb 2007 05:07 GMT
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
> 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?