PowerPoint Events (2013) Firing Order Checker. Instructions Press Alt+F8 to open the Macro window...

Preview:

Citation preview

PowerPoint Events (2013)Firing Order Checker

Instructions

• Press Alt+F8 to open the Macro window• Click InitApp and then Run• Press Alt+F11 to open the VBE (Visual Basic Editor)• Press Ctrl+G to see the VBA debug messages in the Immediate window• Perform various actions and observe the events order in the Immediate window• Type end followed by return in the Immediate window to stop the events

Open Existing Presentation

• App_WindowDeactivate• App_WindowActivate• App_SlideSelectionChanged• App_WindowSelectionChange• App_PresentationOpen• App_AfterPresentationOpen

Create New Presentation

• App_WindowDeactivate• App_WindowActivate• App_NewPresentation• App_AfterNewPresentation• App_PresentationNewSlide• App_SlideSelectionChanged• App_WindowSelectionChange

Save Presentation

• App_PresentationBeforeSave• App_PresentationSave

Add New Slide

• App_PresentationNewSlide• App_SlideSelectionChanged• App_WindowSelectionChange

Start Slide Show

• App_SlideShowBegin• App_SlideShowNextSlide• App_SlideShowNextClick

End Slide Show

• App_SlideShowEnd• App_WindowActivate• App_SlideSelectionChanged• App_WindowSelectionChange

Close Presentation

• App_PresentationBeforeClose• App_PresentationClose• App_WindowDeactivate• App_PresentationCloseFinal• App_WindowActivate• App_SlideSelectionChanged• App_WindowSelectionChange

Recommended