Hi Yu Taro,
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
I tried this and it worked correctly for me. Make sure you have the latest
nightly build and if it still is a problem, open a GitHub Issue and post the
.JS file that contains this code. Also see if there is any related error
reports in the browser console.
Thanks,
-Alex