Getting Master shapes to appear in slideshow view

  • Thread starter Thread starter JimS
  • Start date Start date
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!
 
Steve:
Thanks, I see that you're trying to refresh the screen, but it still doesn't
work when I am stepping through the code. When I run it "real-time" it seems
to refresh correctly. I would think your solution would work either way, but
it doesn't
 
Back
Top