Y
Yogi_Bear_79
I have a simple test SlideShow. It contains two slides, I installed the
AutoEvents Addin. I created a module and entered the following code, but
nothing appears on the second slide. I haven't added anything to the slide
(it is blank). I had hoped this code would add a text box with that
statement in it. I looked at adding a text box manually, but found no way to
identify it. I also tried just trigering a simple MsgBox but that didn't
work either. I also tried a Selcet Case statement.
The end results will be I need to display an updated Text box on this slide
whenever it appears during the slide show loop. The text to be displayed
will be determined byVBA code.
Sub Auto_NextSlide(Index As Long)
If (Index = 2) Then
With ActivePresentation.Slide(2).Shapes("MyWeirdLittleTextBox")
.TextFrame.TextRange.Text = "Hi. I'm different now."
End If
AutoEvents Addin. I created a module and entered the following code, but
nothing appears on the second slide. I haven't added anything to the slide
(it is blank). I had hoped this code would add a text box with that
statement in it. I looked at adding a text box manually, but found no way to
identify it. I also tried just trigering a simple MsgBox but that didn't
work either. I also tried a Selcet Case statement.
The end results will be I need to display an updated Text box on this slide
whenever it appears during the slide show loop. The text to be displayed
will be determined byVBA code.
Sub Auto_NextSlide(Index As Long)
If (Index = 2) Then
With ActivePresentation.Slide(2).Shapes("MyWeirdLittleTextBox")
.TextFrame.TextRange.Text = "Hi. I'm different now."
End If