Packageispring.presenter.presentation.slides
Interfacepublic interface IAnimationSteps

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

The IAnimationSteps interface represents a collection of the slide animation steps.

An animation step is an animation sequence of the slide shapes playing automatically (no need for mouse clicks).

The IAnimationSteps interface can be obtained using the animationSteps property on the ISlide interface or the animationSteps property on the ISlidePlaybackController interface.

See also

ispring.presenter.player.slides.ISlidePlaybackController
ispring.presenter.presentation.slides.IAnimationStep
ispring.presenter.presentation.slides.ISlide


Public Properties
PropertyDefined By
advanceOnClick : Boolean
[read-only] Indicates whether manual animation step advance on slide background mouse click is enabled.
IAnimationSteps
count : uint
[read-only] Returns the number of animation steps in the collection.
IAnimationSteps
duration : Number
[read-only] Returns total duration, in seconds, of all animation steps in the collection.
IAnimationSteps
Public Methods
MethodDefined By
 
Returns the IAnimationStep interface of the animation that exists at the specified index.
IAnimationSteps
Property Detail
advanceOnClickproperty
advanceOnClick:Boolean  [read-only]

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

Indicates whether manual animation step advance on slide background mouse click is enabled.


Implementation
    public function get advanceOnClick():Boolean
countproperty 
count:uint  [read-only]

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

Returns the number of animation steps in the collection.

Each slide contains at least one animation step.


Implementation
    public function get count():uint
durationproperty 
duration:Number  [read-only]

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

Returns total duration, in seconds, of all animation steps in the collection.


Implementation
    public function get duration():Number
Method Detail
getStep()method
public function getStep(index:uint):IAnimationStep

Language Version : ActionScript 3.0
Product Versions : iSpring Pro 6.0.3, iSpring Platform 6.0
Runtime Versions : AIR 1.0, Flash Player 10.1

Returns the IAnimationStep interface of the animation that exists at the specified index.

Parameters

index:uint — The index position of the animation step.

Returns
IAnimationStep — The animated step at the specified index position.

Throws
RangeError — Throws if the index does not exist in the collection.

See also