View Single Post
 
Old 11-02-2013, 11:13 AM
kisfe kisfe is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: Nov 2013
Posts: 5
kisfe is on a distinguished road
Default

Quote:
Originally Posted by JohnWilson View Post
You could try this (Work on a copy!!)

Code:
Sub OnSlideShowPageChange(SW As SlideShowWindow)
Dim osld As Slide
If SW.View.CurrentShowPosition = 2 Then ' this is slide 2
Set osld = SW.View.Slide
osld.Shapes("ShockwaveFlash1").OLEFormat.Object.Playing = True
End If
End Sub
Reply With Quote