Archive for February, 2010
…tell apart missing XML attributes from empty ones
This might be tricky using E4X, which, in an attempt to make the overall XML handling a lot easier, apparently also took some useful “garbage” away: there is no getAttributeNode() method (or similar) in E4X, as it is in DOM.
var dataProvider1 : XML = <Text />;
var dataProvider2 : XML = <Text prompt="" />;
// Suppose you [...]
