window.runtime property | window.runtime.flash.media.SoundTransform |
Inheritance | SoundTransform Object |
Runtime Versions: | AIR 1.0, |
See also
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
leftToLeft : Number
A value, from 0 (none) to 1 (all), specifying how much of the left input is played in the
left speaker. | SoundTransform | ||
leftToRight : Number
A value, from 0 (none) to 1 (all), specifying how much of the left input is played in the
right speaker. | SoundTransform | ||
pan : Number
The left-to-right panning of the sound, ranging from -1 (full pan left)
to 1 (full pan right). | SoundTransform | ||
prototype : Object [static]
A reference to the prototype object of a class or function object. | Object | ||
rightToLeft : Number
A value, from 0 (none) to 1 (all), specifying how much of the right input is played in the
left speaker. | SoundTransform | ||
rightToRight : Number
A value, from 0 (none) to 1 (all), specifying how much of the right input is played in the
right speaker. | SoundTransform | ||
volume : Number
The volume, ranging from 0 (silent) to 1 (full volume). | SoundTransform |
Method | Defined By | ||
---|---|---|---|
SoundTransform(vol:Number = 1, panning:Number = 0)
Creates a SoundTransform object. | SoundTransform | ||
hasOwnProperty(name:String):Boolean
Indicates whether an object has a specified property defined. | Object | ||
isPrototypeOf(theClass:Object):Boolean
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
propertyIsEnumerable(name:String):Boolean
Indicates whether the specified property exists and is enumerable. | Object | ||
setPropertyIsEnumerable(name:String, isEnum:Boolean = true):void
Sets the availability of a dynamic property for loop operations. | Object | ||
toLocaleString():String
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
toString():String
Returns the string representation of the specified object. | Object | ||
valueOf():Object
Returns the primitive value of the specified object. | Object |
leftToLeft | property |
leftToLeft:Number
Runtime Versions: | AIR 1.0, |
A value, from 0 (none) to 1 (all), specifying how much of the left input is played in the left speaker.
leftToRight | property |
leftToRight:Number
Runtime Versions: | AIR 1.0, |
A value, from 0 (none) to 1 (all), specifying how much of the left input is played in the right speaker.
pan | property |
pan:Number
Runtime Versions: | AIR 1.0, |
The left-to-right panning of the sound, ranging from -1 (full pan left) to 1 (full pan right). A value of 0 represents no panning (balanced center between right and left).
rightToLeft | property |
rightToLeft:Number
Runtime Versions: | AIR 1.0, |
A value, from 0 (none) to 1 (all), specifying how much of the right input is played in the left speaker.
rightToRight | property |
rightToRight:Number
Runtime Versions: | AIR 1.0, |
A value, from 0 (none) to 1 (all), specifying how much of the right input is played in the right speaker.
volume | property |
volume:Number
Runtime Versions: | AIR 1.0, |
The volume, ranging from 0 (silent) to 1 (full volume).
SoundTransform | () | Constructor |
public function SoundTransform(vol:Number = 1, panning:Number = 0)
Runtime Versions: | AIR 1.0, |
Creates a SoundTransform object.
Parametersvol:Number (default = 1 ) — The volume, ranging from 0 (silent) to 1 (full volume).
| |
panning:Number (default = 0 ) — The left-to-right panning of the sound, ranging from -1 (full pan left)
to 1 (full pan right). A value of 0 represents no panning (center).
|
Thu Sep 29 2011, 02:34 AM -07:00