I am trying to add a sideload add-in doing some automation in powerpoint. I couldn't find a command or property in the powerpoint office add-in to hide/show slides.
Does anyone know how to hide / show slides via javascript in powerpoint?
The command via VBA is:
ActivePresentation.Slides(1).SlideShowTransition.Hidden = True / False
Command via Javascript: ???
But there exists a method to delete slides: slide.delete() exists, but no slide.hide()
Thanks, Florian