Any ideas? Is there anything that would restrict me from binding to the components in the flash.media package? I am also unable to bind to the NetConnection.connected property.
I would like to avoid setting up a timer function that repeatedly checks the activity level on the mic. --- In [email protected], "alanmorehead79" <[EMAIL PROTECTED]> wrote: > > Is it possible to bind to the properties on a Microphone object? > > The following code is not working for me: > > <?xml version="1.0" encoding="utf-8"?> > <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> > > <mx:Script> > <![CDATA[ > > [Bindable] public var mic:Microphone = > Microphone.getMicrophone(); > > ]]> > </mx:Script> > > <mx:Label text="{mic.activityLevel}"/> > > </mx:Application> >

