| Package | com.SeiON.Core.Interface |
| Interface | public interface ISeionInstance extends ISeionControl, flash.events.IEventDispatcher |
| Implementors | SeionInstance |
| Property | Defined By | ||
|---|---|---|---|
| autodispose : Boolean [read-only] Whether this sound is auto-disposable. | ISeionInstance | ||
![]() | isPaused : Boolean [read-only] Is the playback paused? (ISeionControl) | ISeionControl | |
| isPlaying : Boolean [read-only] Is the sound active? (ISeionInstance) | ISeionInstance | ||
| length : Number [read-only] The total length of the clip, excluding repeats. | ISeionInstance | ||
| manager : SeionGroup [read-only] Returns the manager that holds this SeionInstance. | ISeionInstance | ||
| name : String The name of the SeionInstance, non-unique. | ISeionInstance | ||
![]() | pan : Number
Get: The panning as affected by its parent. | ISeionControl | |
| position : Number [read-only] How far into the clip we are. | ISeionInstance | ||
| progress : Number [read-only] How far into the clip we are, from 0.0 to 1.0. | ISeionInstance | ||
| repeat : int
How many times the SeionInstance is programmed to repeat itself. | ISeionInstance | ||
| repeatLeft : int [read-only]
How many more times the SeionInstance has to repeat itself. | ISeionInstance | ||
| soundtransform : SoundTransform [read-only] Returns the predefined sound properties of the sound. | ISeionInstance | ||
![]() | volume : Number
Get: The volume as affected by its parent. | ISeionControl | |
| Method | Defined By | ||
|---|---|---|---|
dispose():void Clears all references held. | ISeionInstance | ||
isDisposed(output:Boolean = true):Boolean Is the SeionInstance already disposed of? (ISeionInstance)
| ISeionInstance | ||
![]() | pause():void Pauses playback of sound. | ISeionControl | |
play():void Plays the sound from the beginning again. | ISeionInstance | ||
![]() | resume():void Resumes playback of sound. | ISeionControl | |
stop():void Stops the sound and resets it to Zero. | ISeionInstance | ||
| autodispose | property |
autodispose:Boolean [read-only] Whether this sound is auto-disposable. (ISeionInstance)
public function get autodispose():Boolean| isPlaying | property |
isPlaying:Boolean [read-only] Is the sound active? (ISeionInstance)
public function get isPlaying():Boolean| length | property |
length:Number [read-only] The total length of the clip, excluding repeats. In absolute terms. (ISeionInstance)
public function get length():Number| manager | property |
manager:SeionGroup [read-only] Returns the manager that holds this SeionInstance. (ISeionInstance)
public function get manager():SeionGroup| name | property |
name:StringThe name of the SeionInstance, non-unique. (ISeionInstance)
public function get name():String public function set name(value:String):void| position | property |
position:Number [read-only] How far into the clip we are. In absolute terms. (ISeionInstance)
public function get position():Number| progress | property |
progress:Number [read-only] How far into the clip we are, from 0.0 to 1.0. (ISeionInstance)
public function get progress():Number| repeat | property |
repeat:intHow many times the SeionInstance is programmed to repeat itself. 0 means no repeats. -1 means infinite repeats.
ISeionInstance public function get repeat():int public function set repeat(value:int):void| repeatLeft | property |
repeatLeft:int [read-only] How many more times the SeionInstance has to repeat itself. To reset repeatLeft, set repeat. 0 means no repeats. -1 means infinite repeats.
ISeionInstance public function get repeatLeft():int| soundtransform | property |
soundtransform:SoundTransform [read-only] Returns the predefined sound properties of the sound. (ISeionInstance)
public function get soundtransform():SoundTransform| dispose | () | method |
public function dispose():voidClears all references held. This object is now invalid. (ISeionInstance)
| isDisposed | () | method |
public function isDisposed(output:Boolean = true):BooleanIs the SeionInstance already disposed of? (ISeionInstance)
Parameters
output:Boolean (default = true) — If true, a trace() message is given as well. |
Boolean |
| play | () | method |
public function play():voidPlays the sound from the beginning again. (ISeionInstance)
| stop | () | method |
public function stop():voidStops the sound and resets it to Zero. (ISeionInstance)