A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
Hi,
Here is the vba code to add a bookmark trigger from my page: http://skp.mvps.org/2010/ppt002.htm
Sub AddBookmarkTrigger()
Dim oShp As Shape ' Shape with animation that needs to be triggered via bookmark
Dim oShpMovie As Shape ' Media shape
'Assumes that we have a media shape with 'Bookmark 1' on slide 1 of the presentation
With ActivePresentation.Slides(1)
Set oShpMovie = .Shapes(1)
Set oShp = .Shapes(2)
' Assign an trigger to shape
' if no bookmark name is specified, it will default to 1st. If no bookmark exists then it fails
Call .TimeLine.InteractiveSequences.Add.AddTriggerEffect(oShp, msoAnimEffectPathCircle, _
msoAnimTriggerOnMediaBookmark, oShpMovie, "Bookmark 1")
End With
End Sub
Regards,
Shyam Pillai