PDA

View Full Version : VBA in powerpoint & flash animation properties



jondallimore
09-24-2015, 02:13 PM
Hello,

I'm trying to sort out some code which will set the 'Playing' property of flash animations to 'True'

So far I have:


Dim axFlash As Object
Set axFlash = ActivePresentation.Slides(1).Shapes(1).OLEFormat.Object
With axFlash
.Playing = True
End With

I havn't been able to test it properly yet, but I know it wont quite do what I want.

A couple of questions:

1) How would I use this to change the properties of EVERY flash animation in the ppt, including some that I have on the slide master?

2) How can I get this to run either when the file is opened, or (probably easier) when the slideshow is started?


Many thanks in advance for any suggestions.

Jon