vote up 2 vote down star
1

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! alt text

flag

2 Answers

vote up 1 vote down check
for each(var vidXml:XML in xmlData.col[0].vid.*) {
trace("loop # = "+vidXml);
aNewTextArray.push(vidXml);

}

// try this

link|flag
Ah sweet this works :) thx man So correct trace is: trace("Where is my text? = "+xmlData.col[0].vid.*); Didn't think of col as an Array :/ – Leon Gaban Sep 29 at 19:38
vote up 1 vote down

Did you try this?

trace("Where is my text? = "+xmlData.col.(@id1 == 'Photography').vid.*);
link|flag
Just tried that, but got this error: Error #1065: Variable @id1 is not defined. Should @id1 here be some sort of XML var? – Leon Gaban Sep 29 at 19:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.