I need to remove the value associated with the property in the Flex 3 associative array; is it possible?
For example, suppose I created this array as follows:
var myArray:Object = new Object(); myArray[ someXML.@attribute ] = "foo";
Later I need to do something like this:
delete myArray[ someXML.@attribute ];
However, I get this runtime error message:
Error #1119: Delete operator is not supported with operand of type XMLList.
How to perform this operation?
source share