XML Node read
Posted on Monday, September 12, 2011
|
No Comments
var buttonsData:XML = XML(XmlString);
for each (var node:XML in buttonsData.children())
{
if (node.@id == id)
{
isButtonExsits = true;
break;
}
}