| Package | com.SeiON |
| Class | public final class SeionGroup |
| Inheritance | SeionGroup Object |
| Implements | ISeionControl |
See also
| Property | Defined By | ||
|---|---|---|---|
| availAllocation : uint [read-only] Discovers how many allocations are left available. | SeionGroup | ||
| borrowedAllocation : uint [read-only] Discovers the no. | SeionGroup | ||
| fullAllocation : uint [read-only] Discovers the total allocation that had been given to it. | SeionGroup | ||
| isPaused : Boolean [read-only] Is the playback paused? (ISeionControl) | SeionGroup | ||
| name : String Name of the SeionGroup. | SeionGroup | ||
| pan : Number
Get: The panning as affected by Seion (parent). | SeionGroup | ||
| usedAllocation : uint [read-only] The total amount of used allocation slots, included assigned and borrowed. | SeionGroup | ||
| volume : Number
Get: The volume as affected by Seion (parent). | SeionGroup | ||
| Method | Defined By | ||
|---|---|---|---|
SeionGroup(name:String, availAmt:uint, secretKey:*)
Please do not call this constructor directly; it will throw an error. | SeionGroup | ||
dispose():void Clears all references held. | SeionGroup | ||
killAllAutoSounds():void
Kills all AUTO-DISPOSABLE sounds of this SeionGroup. | SeionGroup | ||
killAllSounds():void
Kills all sounds of this SeionGroup. | SeionGroup | ||
pause():void Pauses playback of all sounds held. | SeionGroup | ||
resume():void Resumes playback of all sounds held. | SeionGroup | ||
| availAllocation | property |
availAllocation:uint [read-only] Discovers how many allocations are left available.
public function get availAllocation():uint| borrowedAllocation | property |
borrowedAllocation:uint [read-only] Discovers the no. of allocations borrowed from Seion.
public function get borrowedAllocation():uint| fullAllocation | property |
fullAllocation:uint [read-only] Discovers the total allocation that had been given to it.
public function get fullAllocation():uint| isPaused | property |
isPaused:Boolean [read-only] Is the playback paused? (ISeionControl)
public function get isPaused():Boolean| name | property |
public var name:StringName of the SeionGroup. Doesn't have to be unique.
| pan | property |
pan:NumberGet: The panning as affected by Seion (parent).
Set: The personal adjustable panning unaffected by anything. ISeionControl public function get pan():Number public function set pan(value:Number):void| usedAllocation | property |
usedAllocation:uint [read-only] The total amount of used allocation slots, included assigned and borrowed.
public function get usedAllocation():uint| volume | property |
volume:NumberGet: The volume as affected by Seion (parent).
Set: The personal adjustable volume unaffected by anything. ISeionControl public function get volume():Number public function set volume(value:Number):void| SeionGroup | () | Constructor |
public function SeionGroup(name:String, availAmt:uint, secretKey:*)Please do not call this constructor directly; it will throw an error. Call it through Seion.createSeionGroup().
Parametersname:String — The quota for the children this SeionGroup is allowed to have.
| |
availAmt:uint — Does nothing, just forces a reminder not to use constructor...
| |
secretKey:* |
IllegalOperationError — When you try to directly instantiate SeionGroup without
using Seion.createSeionGroup().
|
See also
| alloc | () | method |
seion_ns function alloc(snd:ISeionInstance, autodispose:Boolean):BooleanQueries for additional allocation.
Parameters
snd:ISeionInstance | |
autodispose:Boolean |
Boolean — True if allocation is possible.
|
| dispose | () | method |
public function dispose():voidClears all references held. This object is now invalid.
| killAllAutoSounds | () | method |
public function killAllAutoSounds():voidKills all AUTO-DISPOSABLE sounds of this SeionGroup. Useful when you want to "clean the slate".
| killAllSounds | () | method |
public function killAllSounds():voidKills all sounds of this SeionGroup. Useful when you want to "clean the slate".
| pause | () | method |
public function pause():voidPauses playback of all sounds held. (ISeionControl)
| resume | () | method |
public function resume():voidResumes playback of all sounds held. (ISeionControl)