I made a test video to check how exact the PP links are. If someone clicks on the text, then the video should play from start-bookmark to end-bookmark. It stops not always on the end-bookmark! why? performance problem on powerpoint?
I want to put image, but i cannot, because I need at least 10 reputation.
UPDATE: I am using Action settings.
The code with trigger
Private Sub setStartAndEndPointOnVideoTrigger(activeSlide As Slide, clickShape As Shape, movieShape As Shape, _
startBookmark As MediaBookmark, endBookmark As MediaBookmark)
Dim oEffectStart As Effect
Dim oEffectEnd As Effect
Dim obhvEffect As AnimationBehavior
Dim delayTime As Double
delayTime = (endBookmark.Position - startBookmark.Position) / 1000
With activeSlide
Set oEffectStart = .TimeLine.InteractiveSequences.Add _
.AddTriggerEffect(movieShape, msoAnimEffectMediaPlayFromBookmark, _
msoAnimTriggerOnShapeClick, clickShape, startBookmark.Name)
Set oEffectEnd = .TimeLine.InteractiveSequences.Add _
.AddTriggerEffect(movieShape, msoAnimEffectMediaPause, _
msoAnimTriggerOnShapeClick, clickShape)
Set obhvEffect = oEffectStart.Behaviors.Add(msoAnimTypeCommand)
obhvEffect.CommandEffect.Bookmark = startBookmark.Name
oEffectEnd.Timing.TriggerType = msoAnimTriggerWithPrevious
oEffectEnd.Timing.TriggerDelayTime = delayTime
End With
End Sub