Harbs
Harbs
@carlosrovira Do you think you can try and track down the source of the problem? I have no way to test AMF. I'd look out for Language.string calls and anywhere...
I'd step through the code where date is being encoded/decoded and compare. You can narrow down where you're looking by looking at the differences between the working .js files and...
I don't think List can be used as a base class for an MXML file. (Whether it should or not is another question...)
Yes, but in Flex pretty much *anything* could be used as a base for an MXML file. In Royale, it's only classes which implement `IMXMLDocument`.
Probably the compiler should give an error when a class which is not an `IMXMLDocument` is used as a base for an MXML file.
You can subclass any component and make it implement IMXMLDocument. I think it's reasonable to do that in the Express and Jewel List components.
I thought I remember the `x` is rewritten?
Probably related as well: There's (usually?) a double require for XML when used: ``` goog.require('XML'); goog.require('XML'); ``` and: `/* Royale Dependency List: org.apache.royale.core.SimpleCSSValuesImpl,org.apache.royale.core.View,org.apache.royale.html.Label,org.apache.royale.events.Event,XML,XML,org.apache.royale.html.beads.GroupView,org.apache.royale.html.beads.layouts.BasicLayout*/ `
Much improved, but I found another case where it's not being resolved: ``` if(objXMLList.length() == 1){// no contents. Keep the background as a top level object xml.Spread.setChildren(objXMLList); } else {...
The issue is like you stated that **none** of the XML methods resolves. That causes the following as well: ``` var xml:XML = ; var logStr:String = xml.toXMLString(); console.log(logStr); ```...