Querying XML with systat

Hello all,

I'm working on a skin for systats/avedesk and I'm trying to query this link ";http://msn.foxsports.com/nugget/9240_49" but I'm not a guru in XML. I'm looking to query the awayTeam field, homeTeam, score, etc...

Can someone help me or give me some guidence on how to query this?

Thanks in advanced...

#293171

Use XPath in the selector that's linked to the XML meter:

selects the awayTeam attribute (you call it field ;)) from the first `game`-node:

//game[1]//@awayTeam

//game[1]//@homeTeam

//game[1]//@homeScore

#293280

Cool...you are awesome dude!!!

Use XPath in the selector that's linked to the XML meter:

selects the awayTeam attribute (you call it field ;)) from the first `game`-node:

//game[1]//@awayTeam

//game[1]//@homeTeam

//game[1]//@homeScore

#293443