To be Honest i have some strange looping there, can u tell me whats the difference of
for (blablabla) {
some code
}
and
for (blablabla)
some code
the looping between have some "{}" and not
**whats "{ or }" in english?..

**
because when i try to add some "{}" in
for(var i:Number = 0; i<list.length(); i++)
if(list[i].name() == "description") <<<<add here "{"
{ i++;break; }
item = list[i].children()[0]; <<and here "}"
hinoTextArea.htmlText = item.toString(); <<or here "}"
the webpage didnt work well.. thank you..

And whats the function of "name()" and "children()" in that
var list:XMLList =
hinoXML.channel.item[evt.target.selectedIndex].children();
var item:XML;
for(var i:Number = 0; i<list.length(); i++)
if(list[i].name() == "description")
{ i++;break; }
item = list[i].children()[0];
ehehe to be honest several code i am copy paste for the reference that i got..

but in that reference its didnt tell me about the function..
thank you
