This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
BehaviorMap
A behavior map listens for new components being added to the display tree, then runs a set of selectors to see if they match it. It will pick up any selectors inside it.
As best practice, define your behavior map as a separate file and include it in the view you want.
See Examples
Properties
| target | IEventDispatcher | The view instance you want to listen on. The behavior map will only catch components somewhere inside of your target. This is set automatically by flex if you use your behavior map in mxml. |
Examples
<BehaviorMap> <Selector ... /> <Selector ... /> </BehaviorMap>
<mx:Application> <me:MyBehaviorMap/> </mx:Application>






