Beautiful!  That did it, thanks much.

-M


--- In [email protected], "Tim Hoff" <timh...@...> wrote:
>
> 
> Hi Mark,
> 
> import mx.events.FlexEvent;
> 
> calendarCheckbox.addEventListener(FlexEvent.VALUE_COMMIT, changeCBF);
> 
> Notice that this is a FlexEvent; rather than a regular Event.  So:
> 
> private function changeCBF( event:FlexEvent ):void
> 
> -TH
> 
> --- In [email protected], "Mark" <mark.pusateri@> wrote:
> >
> > I'd like to run a function whenever a checkbox has changed regardless
> if the user selects/deselects it or if it changes from a different user
> action (such as resetting filters by clicking a button). I tried using
> calendarCheckbox.addEventListener(Event.CHANGE, changeCBF); but this
> only works from a user interacting with that checkbox. How can I do
> this?
> >
> > Thanks,
> > Mark
> >
>


Reply via email to