Share via


Sequences Collection

Sequences Collection
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

TimeLine
Aa201409.parchild(en-us,office.10).gifSequences
Aa201409.space(en-us,office.10).gifAa201409.parchild(en-us,office.10).gifSequence

Represents a collection of Sequence objects. Use a Sequence object to add, find, modify, and clone animation effects.

Using the Sequences collection

Use the InteractiveSequences property of the TimeLine object to return a Sequences collection. Use the Add method to add an interactive animation sequence. The following example adds two shapes on the first slide of the active presentation and sets interactive effect for the star shape so that when you click on the bevel shape, the star shape is be animated.

  Sub AddNewSequence()
    Dim shp1 As Shape
    Dim shp2 As Shape
    Dim interEffect As Effect

    Set shp1 = ActivePresentation.Slides(1).Shapes.AddShape _
        (Type:=msoShape32pointStar, Left:=100, _
        Top:=100, Width:=200, Height:=200)
    Set shp2 = ActivePresentation.Slides(1).Shapes.AddShape _
        (Type:=msoShapeBevel, Left:=400, _
        Top:=200, Width:=150, Height:=100)

    With ActivePresentation.Slides(1).TimeLine.InteractiveSequences.Add(1)
        Set interEffect = .AddEffect(shp2, msoAnimEffectBlinds, _
            trigger:=msoAnimTriggerOnShapeClick)
        interEffect.Shape = shp1
    End With
End Sub