I am trying to use the forEach Loop action to trace every Artist name in the output panel and am having a difficult time with the syntax. I am not getting any results (not even errors). I have the XML loaded and am able to trace a direct path to a child, but want it to be dynamic.Here is my XML:\[code\]<library> <artist title="DreamTheater"> <album title="A Dramatic Turn of Events" art="images/bg.jpg" soundtrack="audio/soundtrack.mp3"> <tracks> <track>On the Backs of Angels</track> </tracks> </album> </artist> <artist title="Rush"> <album title="2112" art=""> <tracks> <track>Something For Nothing</track> </tracks> </album> </artist> </library>\[/code\]and here is my AS3 function:\[code\]function artistListLoad():void{ for each (var artist:XML in mainXML) { trace(artist); } }\[/code\]I am a beginner with the forEach loop and don't understand it yet so comments are appreciated!