Posted by Jacob Wright in How-Tos, ReflexMar 29th, 2010 | 5 Comments
Update: If you don't know what Reflex is, I've just introduced Reflex.
Building a component in Reflex consists of 3 things: making the component class, building the behaviors, and creating the skin. The component class is an extension of Component with your new component's name and a few public properties that you feel might be important to that type of component. The real logic of the component goes into its behaviors, so that is where we are starting today.
What is a Behavior?
A behavior is a well defined piece of functionality that may be used by one or more components. Behaviors do not necessarily...