This is how I copied all the attributes of an XML node (srcXMLNode) to another XML node (dstXMLNode) in Flex, without knowing the names of those attributes: for each(var attr:XML in srcXMLNode.attributes()) { dstXMLNode.@[attr.name()] = attr; } And this is the way I added child nodes of an XML element to another: for each(var elem:XML [...]
Full error message: 1144: Interface method set data in namespace is implemented with an incompatible signature in class. <package:class><mypackage:myclass></mypackage:myclass></package:class> This error appears in Flex Builder / Eclipse on the Problems Tab.This error refers to the fact that an extended class named <package.class> with an over ridable function has a correspondent override in <mypackage:myclass> that doesn’t [...]
