-
Notifications
You must be signed in to change notification settings - Fork 534
Closed
Description
PowerPoint 2007 file format can be played continuously with the following code added to Writer/PowerPoint2007/PptsProps.php at Line 44 adding:
// Enable slideshow to autoloop
$objWriter->startElement('p:showPr');
$objWriter->writeAttribute('loop', '1');
$objWriter->endElement();
This adds a p:showPr child element to p:presentationPr that allows the slideshow to keep playing until [Esc] is pressed.