Hello,
I use royale 0.9.3(nightly) to implement Tour of Heroes(Angular).
here is live demo
https://z3idxk1hh5asgqpvhvftra-on.drv.tw/royale-heroes/#
It runs on Chrome well, but IE 11 no good...
I find some issue when develop the tour of heroes.
1. Does royale have something like mx:Repeater or s:DataGroup, now I always
use j:List, but the UI does not need rollover, selected....etc
2. [Bindable]
private var static ary:ArrayList = new ArrayList(["AA","BB","CC"]);
That will cause page blank....because "static"
If I must use static, the ArrayList construct must be empty.
private var static ary:ArrayList = new ArrayList(); // this work well
3. When call ArrayList.removeAll(), the j:List does not refresh. Must call
ArrayList.removeItemAt() for each.
4. Seems Royale has no VectorList, So I can't use Vector.<> for databinding
5. j:TextInput change event will trigger after typed, but also triggered
when focus out
6. j:HGroup itemsVerticalAlign not worked
7. j:List use beands j:HorizontalLayout itemsExpand, not worked and cause
page blank.
8. How to use org.apache.royale.routing, does it use with j:Navigation
9. If use typeNames attribute, compile debug is ok, but compile release
will miss it.
Thanks. I like apache royale.