I am using this code snippet to trace the activityLevel (basically volume) from the microphone. Basically, this shows an integer by using
function onMicActivity(event:ActivityEvent):void
{
trace("activating=" + event.activating + ", activityLevel=" +
mic.activityLevel);
}
According to Adobe's ActionScript 3.0 reference, the activityLevel property only outputs a single integer between 0 and 100. How can I get volume levels of the left channel and the right channel separately?