Is it possible to reflect an object in actionscript and get the property names back in the order they are positioned in the class? I have tried the following
var reflectionObject : Object = ObjectUtil.getClassInfo(obj);
var propsArray : Array = reflectionObject.properties;
(orders alphabetically)
var typeInfo:XML = describeType(obj)
(Not sure what order this is)