Hello all,
I would like to create a simple flow.
First step, the user selects a file (PPT file)
Second step is a VBA script that has to read slide titles and output a list of slides in a custom form
My VBA script looks like:
Set selectedPres=Presentations.Open("%SelectedFile.FullName%")
Set selectedSlides=ActivePresentation.Slides
For Each slide In selectedSlides
...
Next
When I execute, I got "Presentations object is required". How get I get my script to know about this object?