Header
PowerPoint tips, hints and tutorials that will change your presentations for ever!

INDEX

 

Jigsaws
Sounds
Video
Custom Shows
vba code
NaviSlides
Games for teachers
Bullets
Triggers
Security
Flash Cards
Multiple Instances
PowerPoint 2007
Mail Merge
Random events
Animation
Hyperlinks
Set spellcheck language


Home buttonTutorial buttonContact buttonProducts button

Remove All Animation (vba)

Sometimes you receive a presentation ansd the animation is just GROSS!

This code will remove it ALL in seconds (not animations on master)

Don't know how to use code - See Here

The Code

Sub zap_ani() 
    Dim oeff As Effect 
    Dim i As Integer 
    Dim t As Integer 
    Dim osld As Slide 
     'remove normal animations
    For Each osld In ActivePresentation.Slides 
        For i = osld.TimeLine.MainSequence.Count To 1 Step -1 
            osld.TimeLine.MainSequence(i).Delete 
        Next i 
         'Remove triggers
        For i = osld.TimeLine.InteractiveSequences.Count To 1 Step -1 
            For t = osld.TimeLine.InteractiveSequences(i).Count To 1 Step -1 
                osld.TimeLine.InteractiveSequences(i).Item(t).Delete 
            Next t 
        Next i 
    Next osld 
End Sub 
 

 

 

 

Back to the Index Page

POWERPOINT BLOG

Articles on your favourite sport

Free Microsoft PowerPoint Advice, help and tutorials, Template Links
This website is sponsored by Technology Trish Ltd
© Technology Trish 2007
Registered in England and Wales No.5780175
PowerPoint® is a registered trademark of the Microsoft Corporation