C
Candace
Does anyone see anything wrong with the following code? I have the
"PrepareSlide22" procedure tied to a picture using "Action Settings", but
nothing happens when I click the picture that this macro is tied to. The
picture that I am clicking is on slide 21. It does not cause the slideshow to
advance to the next slide (slide 22), which is what I want the
macro/procedure to accomplish. Am I doing something wrong here?
Dim correctCube As Integer
Sub PrepareSlide22()
Initialize
ActivePresentation.SlideShowWindow.View.Next
End Sub
Sub Initialize()
correctCube = 0
ActivePresentation.Slides(22).Shapes(16).Visible = msoFalse
End Sub
"PrepareSlide22" procedure tied to a picture using "Action Settings", but
nothing happens when I click the picture that this macro is tied to. The
picture that I am clicking is on slide 21. It does not cause the slideshow to
advance to the next slide (slide 22), which is what I want the
macro/procedure to accomplish. Am I doing something wrong here?
Dim correctCube As Integer
Sub PrepareSlide22()
Initialize
ActivePresentation.SlideShowWindow.View.Next
End Sub
Sub Initialize()
correctCube = 0
ActivePresentation.Slides(22).Shapes(16).Visible = msoFalse
End Sub