hi Ben,
thank you for improving reflex
a few wishes of mine
1) please add
[Style(name="left")]
[Style(name="right")]
[Style(name="top")]
[Style(name="bottom")]
[Style(name="horizontalCenter")]
[Style(name="verticalCenter")]
to the TextFieldDisplay class
for using in mxml
<rx:TextFieldDisplay top="5" left="5" />
2) please make Bind to implement IMXMLObject, now it is commented
public class Bind // implements IMXMLObject
I also use it in mxml, I see this as an advantage over xtylers
DataBind
3)
<rx:behaviors>
<rx:SlideBehavior direction="horizontal" />
</rx:behaviors>
SlideBehavior works in mxml only if I comment updateUILayout in
constructor
public function SlideBehavior(target:IEventDispatcher = null,
direction:String = "horizontal", page:Boolean = false) {
super(target);
this.direction = direction;
this.page = page;
//updateUILayout();
}