General
Your class han't been included properly, this documentation section will tell you all you need to know: Forcing Actionscript class inclusion
These traces come from the as3commons-reflect library, the errors that are being reported are harmless, yet necessary to work around a certain Flash Player bug.
To turn these error messages off you can use this code:
private static var loggerSetup:* = setupLogging();
private static var logger:ILogger = LoggerFactory.getLogger("YourAppName.Main");
private static function setupLogging():void {
LoggerFactory.loggerFactory = new FlexLoggerFactory();
var traceTarget:TraceTarget = new TraceTarget();
traceTarget.includeCategory = true;
traceTarget.includeDate = true;
traceTarget.includeLevel = true;
traceTarget.includeTime = true;
traceTarget.filters = ["YourAppName.*"];
Log.addTarget(traceTarget);
var traceTargetSpring:TraceTarget = new TraceTarget();
traceTargetSpring.includeCategory = true;
traceTargetSpring.includeDate = true;
traceTargetSpring.includeLevel = true;
traceTargetSpring.includeTime = true;
traceTargetSpring.level = LogEventLevel.INFO;
traceTargetSpring.filters = ["org.springextensions.*"];
Log.addTarget(traceTargetSpring);
var traceTargetReflect:TraceTarget = new TraceTarget();
traceTargetReflect.includeCategory = true;
traceTargetReflect.includeDate = true;
traceTargetReflect.includeLevel = true;
traceTargetReflect.includeTime = true;
traceTargetReflect.level = LogEventLevel.WARN;
traceTargetReflect.filters = ["org.as3commons.reflect.*"];
Log.addTarget(traceTargetReflect);
}
applicationContext.autowireProcessor = null;
<object class="..." skip-metadata="true"/>
<property file="strings.properties" prevent-cache="false"/>
<object class="..." skip-postprocessors="true"/>