G
Geoff Cox
Hello,
I am trying to change to a kiosk mode and need to make the words which
currently appear (entrance/dissolve) when the enter key is pressed,
appear (triggered) when a shape is clicked on.
The code below finds the words (which are in text boxes) but I do not
have a clue as to how to make the appearance of each word be triggered
by clicking on a shape!
Pointers please!
Geoff
For Each oSl In ActivePresentation.Slides
ActiveWindow.View.GotoSlide (oSl.SlideIndex)
With oSl.TimeLine
For i = .MainSequence.Count To 1 Step -1
If .MainSequence(i).Shape.Type = msoTextBox Then
If .MainSequence(i).Shape _
.AnimationSettings.EntryEffect = _
ppEffectDissolve Then
End If
End If
Next i
End With
Next oSl
I am trying to change to a kiosk mode and need to make the words which
currently appear (entrance/dissolve) when the enter key is pressed,
appear (triggered) when a shape is clicked on.
The code below finds the words (which are in text boxes) but I do not
have a clue as to how to make the appearance of each word be triggered
by clicking on a shape!
Pointers please!
Geoff
For Each oSl In ActivePresentation.Slides
ActiveWindow.View.GotoSlide (oSl.SlideIndex)
With oSl.TimeLine
For i = .MainSequence.Count To 1 Step -1
If .MainSequence(i).Shape.Type = msoTextBox Then
If .MainSequence(i).Shape _
.AnimationSettings.EntryEffect = _
ppEffectDissolve Then
End If
End If
Next i
End With
Next oSl