J
JimS
I am using VBA to turn on and off shapes that are in the Master. When I step
through a VBA macro to turn on and off selected shapes in slideshow view,
some shapes do not appear in slideshow view; yet they do appear in normal
view, so I know the macro is working. Here is a code snippet:
Dim CurSld As Integer
CurSld = SlideShowWindows(1).View.Slide.SlideID
Set myShapes = ActivePresentation.Slides(1).Master.Shapes
Select Case CurSld
Case 259
If myShapes.Item("NAV_SEL").Visible = msoTrue Then
With myShapes
.Item("Nav_SA1").Visible = msoFalse
.Item("Nav_SA2").Visible = msoTrue
.Item("NAV_SEL").Visible = msoFalse
.Item("NAV_ASSC").Visible = msoTrue
End With
End If
....
Thanks!
through a VBA macro to turn on and off selected shapes in slideshow view,
some shapes do not appear in slideshow view; yet they do appear in normal
view, so I know the macro is working. Here is a code snippet:
Dim CurSld As Integer
CurSld = SlideShowWindows(1).View.Slide.SlideID
Set myShapes = ActivePresentation.Slides(1).Master.Shapes
Select Case CurSld
Case 259
If myShapes.Item("NAV_SEL").Visible = msoTrue Then
With myShapes
.Item("Nav_SA1").Visible = msoFalse
.Item("Nav_SA2").Visible = msoTrue
.Item("NAV_SEL").Visible = msoFalse
.Item("NAV_ASSC").Visible = msoTrue
End With
End If
....
Thanks!