Hi again guys, this should be a very simple trace out... but I have no idea why it's not working.
My XML
<col id1="Photography">
<vid flv="video1.flv" thumb="thumb1.jpg">This is test video 1.</vid>
<vid flv="video2.flv" thumb="thumb2.jpg">This is test video 2.</vid>
<vid flv="video3.flv" thumb="thumb3.jpg">This is test video 3.</vid>
<vid flv="video4.flv" thumb="thumb4.jpg">This is test video 4.</vid>
<vid flv="video5.flv" thumb="thumb5.jpg">This is test video 5.</vid>
<vid flv="video6.flv" thumb="thumb6.jpg">This is test video 6.</vid>
</col>
<col id2="Video">
<vid flv="video7.flv" thumb="thumb7.jpg">This is test video 7.</vid>
<vid flv="video8.flv" thumb="thumb8.jpg">This is test video 8.</vid>
<vid flv="video9.flv" thumb="thumb9.jpg">This is test video 9.</vid>
<vid flv="video10.flv" thumb="thumb10.jpg">This is test video 10.</vid>
</col>
What I'm trying to do is simply get the text information inside the vid nodes so I can loop and make textFields. I've triple checked this online and it should be something like this:
My simple Flash Trace:
trace("Where is my text? = "+xmlData.col.@id1.vid.*);
xmlData being the XML, col pointing to col, .@id1 pointing to the Photography section, and finally .vid.* to pull in all the text information.
My trace: Where is my text? =
What I want to get is: This is test video 1.This is test video 2.This is test video 3.This is test video 4.This is test video 5.This is test video 6.
Now if I write this:
trace("Where is my text? = "+xmlData.col.vid.*);
I will get ALL the text information for both col's, but I need to seperate col id1 from col id2 :( hoping someone can point out where my ducktape programming failed. :)
Thanks in advance again! 
