I am tyring to learn flex programming myself. Below code gives me a warning

variable 'item' has no type declaration.

var xml:XML = xml as XML;

for each (var item in xml.employee) {
    Alert.show(item.@name); 
}

What is the type of variable item? I thought it was XMLNode, but it give me error. I want to remove the compile warning.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Use this please, you haven't initialized item.


var xml:XML = new XML();

for each (var item:XML in xml.employee) {
    Alert.show(item.@name); 
}
link|improve this answer
It works. So, item is of type XML. Thanks. – DigitalManic Jun 6 '09 at 10:33
feedback

Your Answer

 
or
required, but never shown