Could be done with code I guess. These two macros will add (and delete again)
markers indicating animation or transition effects.
Sub addmarkers()
Dim osld As Slide
For Each osld In ActivePresentation.Slides
If osld.TimeLine.MainSequence.Count > 0 Or _
osld.TimeLine.InteractiveSequences.Count > 0 Then
With osld.Shapes.AddShape(msoShape12pointStar, 10, 10, 20, 20)
..Fill.ForeColor.RGB = vbYellow
..Tags.Add "ZAP", "YES"
End With
End If
If osld.SlideShowTransition.EntryEffect <> ppEffectNone Then
With osld.Shapes.AddShape(msoShape12pointStar, 40, 10, 20, 20)
..Fill.ForeColor.RGB = vbRed
..Tags.Add "ZAP", "YES"
End With
End If
Next osld
End Sub
Sub zapmarkers()
Dim osld As Slide
Dim i As Integer
For Each osld In ActivePresentation.Slides
For i = osld.Shapes.Count To 1 Step -1
If osld.Shapes(i).Tags("ZAP") = "YES" Then osld.Shapes(i).Delete
Next i
Next osld
End Sub
How to use:
http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html#vba