Pausing your animations with VBA
Lets say if you are running a slide that has multiple animations on it. Halfway through the presentation, you may want to pause the animations to explain something. A simple way to do this is to press the “b” key which will black out the screen. Then, press “b” key again to resume the presentation. The downside is that you won’t be able to see the content on the screen. To resolve this, you can make use of VBA. To do so, click Tools > Macro > Visual Basic Editor. Copy the code as shown below: Sub pauseshow() ActivePresentation.SlideShowWindow.View.State = … Continue reading Pausing your animations with VBA