--- In [email protected], "Tracy Spratt" <tr...@...> wrote:
>
> Try:
> 
> for each(var item:Object in nutritionXML[carousel].itemdata)
>

Another syntax that's more reliable and understandable is:

for each (var item:XMLList in nutritionXML.child(carousel).child(itemdata)) {
   //stuff
}

Reply via email to