Extending Flash |
|
|
|
| Objects > SoundItem object > soundItem.convertStereoToMono | |||
Flash MX 2004.
soundItem.convertStereoToMono
Property; a Boolean value available only for MP3 and Raw compression types. Setting this to true converts a stereo sound to mono; false leaves it as stereo. For MP3 compression type, if soundItem.bitRate is less than 20 Kbps, this property is ignored and forced to true (see soundItem.bitRate).
|
NOTE |
If you want to specify a value for this property, set |
The following example converts an item in the library to mono only if the item has MP3 or Raw compression type:
fl.getDocumentDOM().library.items[0].convertStereoToMono = true;
|
|
|
|