Packageispring.presenter.player.audio
Interfacepublic interface IAudioPlaybackControllerFactory

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 IAudioPlaybackControllerFactory interface is an abstract factory creating audio controllers.

The IAudioPlaybackControllerFactory interface of the presentation player is accessible via the audioPlaybackControllerFactory property on the IPresentationPlaybackCore interface.

See also

ispring.presenter.player.core.IPresentationPlaybackCore.audioPlaybackControllerFactory


Public Methods
MethodDefined By
 
createAudioController(asset:ISoundAsset, loops:uint, trimStart:Number, trimEnd:Number):IMediaPlaybackController
Creates a media playback controller for the audio asset.
IAudioPlaybackControllerFactory
Method Detail
createAudioController()method
public function createAudioController(asset:ISoundAsset, loops:uint, trimStart:Number, trimEnd:Number):IMediaPlaybackController

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

Creates a media playback controller for the audio asset.

Parameters

asset:ISoundAsset — A sound asset object used to play the audio.
 
loops:uint — The number of loops to play the audio.
 
trimStart:Number — A portion of an audio to cut at the beginning of the audio in seconds.
 
trimEnd:Number — A portion of an audio to cut at the end of the audio in seconds.

Returns
IMediaPlaybackController — The IMediaPlaybackController interface controlling the audio.

See also