G
Geoff Cox
Hello,
The code below is aimed at finding an EndShow action button (type 132)
and adding a sound to it - but it isn't working! Ideas please.
Cheers
Geoff
For Each oSh In oSl.Shapes
If oSh.Type = 1 Then
If oSh.AutoShapeType = 132 Then
With oSh.ActionSettings(ppMouseClick)
.SoundEffect.ImportFromFile "C:\sound.wav"
End With
End If
End If
Next oSh
The code below is aimed at finding an EndShow action button (type 132)
and adding a sound to it - but it isn't working! Ideas please.
Cheers
Geoff
For Each oSh In oSl.Shapes
If oSh.Type = 1 Then
If oSh.AutoShapeType = 132 Then
With oSh.ActionSettings(ppMouseClick)
.SoundEffect.ImportFromFile "C:\sound.wav"
End With
End If
End If
Next oSh