Maybe I'm just misstating my question or maybe I'm just not understanding. I'm just trying to make it so that the following PagableArrayCollection is populated dynamically (i.e. via an HTTPService):
[Bindable]
public var myTest:PagableArrayCollection = new
PagableArrayCollection(
[{label:"AK", dataa:"Alaska"},
{label:"AL", dataa:"Alabama"},
{label:"AR", dataa:"Arkansas"},
{label:"AZ", dataa:"Arizona"},
{label:"CA", dataa:"California"},
]);

