The new sortOn code is causing a compile error in Language.as: Language.js:408: WARNING - variable int is undeclared [java] opt2 = org.apache.flex.utils.Language.as(opt, int);
I can easily fix this by changing opt2 = opt as int; to opt2 = int(opt); but I think this is a bug in the “as” implementation. I’m not sure where the core types are defined to fix this. Harbs