Home Tips & Tutorials      

PowerPoint 


 Animations
 Delivery
 Design and Graphics
 General
 Troubleshooting
 VBA
 Writing and Organizing
 Articles

   How to add the blinds animation to a shape in a specified slide.


Sub AddAnimationtoShape()

  Dim sldActive As Slide
  Dim shpSelected As Shape


  Set sldFirst = ActivePresentation.Slides(1)
  Set shpFirst = sldFirst.Shapes(1)


  sldFirst.TimeLine.MainSequence.AddEffect _
   Shape:=shpFirst, effectId:=msoAnimEffectBlinds

End Sub


Related keywords

TimeLine - A read-only property of the Slide object that returns a TimeLine object that represents the animation timeline for the slide.
MainSequence - A property of the TimeLine object that returns a Sequence object that represents the collection of Effect objects in the main animation sequence of a slide.
AddEffect - A property of the Sequence object that adds a new animation effect and returns an Effect object.
PowerPoint Add-ins

Easily save and apply the formatting of a shape.
Create a library from your custom animations.
Pick colors from screen for your shapes.

Excel Add-ins

Find duplicates , remove characters , change case , merge cell's text.
Visually display and store in a library cell's formatting.






Home     Contact Us    

PowerPoint, Excel, Word and Access are registered trademarks of the Microsoft Corporation.