OfficeTips Home || VBA Section || General Section || Download Section || Privacy Policy Bookmark and Share

Slide navigation (slide sorter view) during slide show

 

You may have noticed an option 'Show all slides' if you have right-clicked on the slide show window. This brings up an iterface which is similar to the slide sorter view while authoring. This view is the Slide Navigation view and can be used to quickly jump to any specific slide during the slide show. Hitting Esc takes you back to the original slide. This only works when the slide show is running full screen and is essentially a part of the Presenter view experience which can be shown on a single monitor too.

Supported versions: PowerPoint 2013 or later

 

' --------------------------------------------------------------------------------
' Copyright ©1999-2018, Shyam Pillai, All Rights Reserved.
' --------------------------------------------------------------------------------
' You are free to use this code within your own applications, add-ins,
' documents etc but you are expressly forbidden from selling or 
' otherwise distributing this source code without prior consent.
' This includes both posting free demo projects made from this
' code as well as reproducing the code in text or html format.
' --------------------------------------------------------------------------------
Sub ShowSlideNavigationView()
    With SlideShowWindows(1)
        If .IsFullScreen Then
            .SlideNavigation.Visible = True
        End If
    End With
End Sub

Sub HideSlideNavigationView()
    With SlideShowWindows(1)
        If .IsFullScreen Then
            .SlideNavigation.Visible = False
        End If
    End With
End Sub

		

 

 

Copyright 1999-2018 (c) Shyam Pillai. All rights reserved.