PDA

View Full Version : detecting type of animation applied in shape



arivas2005
05-07-2016, 08:16 PM
Hello!

I need to know the animation phase of the shape

if the type of animation in shape is: entrance, emphasis or exit
excuse my english

thanks!

arivas2005
05-08-2016, 08:23 PM
Hello again

And I found the following animation properties in shapes


Set osld = ActivePresentation.Slides(1)
anImaciones = "": puntajeanimaciones = 0
For i = 1 To ActivePresentation.Slides(1).TimeLine.MainSequence.Count

shapeXnum = osld.TimeLine.MainSequence(i).EffectType '' number type animation
elshapeid = osld.TimeLine.MainSequence.Item(i).Shape.Id ' shape id
' osld.TimeLine.MainSequence.Item(i
TextShape = osld.TimeLine.MainSequence(i).DisplayName ' text shape
Start = osld.TimeLine.MainSequence(i).Timing.TriggerType ' phase start with mouse or whithout
Nrepeat = osld.TimeLine.MainSequence(i).Timing.RepeatCount ' repeatnum
Nduration = osld.TimeLine.MainSequence(i).Timing.Duration ' DURACION ' segs speed
Nrotal = ActivePresentation.Slides(1).TimeLine.MainSequence(i).Shape.Rotation
Nameshape = osld.TimeLine.MainSequence(i).Shape.Name
delayshape = osld.TimeLine.MainSequence(i).Shape.AnimationSettings

Next


but, I find nothing about phases ...
type of animation in shape: entrance, emphasis or exit

how to know if: entrance or emphasis or exit in the shape

I need these info
excuse my English again
Gracias