Forum Moderators: open
Now all I need to get me started is how to access each 'entry' in the xml list. In my old code it worked like this:
totProds = objXML.getElementsByTagName("feed").length
and I would then find
for i=0 to totProds-1
a=objXML.getElementsByTagName("entry").item(i)
next
I'll post a bit of the xml below, any help much appreciated.
<?xml version='1.0' encoding='UTF-8'?>
<feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' xmlns:yt='http://gdata.youtube.com/schemas/2007'>
<id>http://gdata.youtube.com/feeds/videos</id>
<updated>2007-09-10T06:39:24.036Z</updated>
<category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/>
<title type='text'>YouTube Videos matching query: google</title>
<logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo>
<link rel='alternate' type='text/html' href='http://www.youtube.com'/>
<link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://gdata.youtube.com/feeds/videos'/>
<link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/videos?start-index=1&max-results=25&vq=google'/>
<link rel='next' type='application/atom+xml' href='http://gdata.youtube.com/feeds/videos?start-index=26&max-results=25&vq=google'/>
<author>
<name>YouTube</name>
<uri>http://www.youtube.com/</uri>
</author>
<generator version='beta' uri='http://gdata.youtube.com/'>YouTube data API</generator>
<openSearch:totalResults>205908</openSearch:totalResults>
<openSearch:startIndex>1</openSearch:startIndex>
<openSearch:itemsPerPage>25</openSearch:itemsPerPage>
<entry>
<id>http://gdata.youtube.com/feeds/videos/dto3mB__0Io</id>
<published>2006-12-12T21:39:05.000Z</published>
<updated>2006-12-12T21:39:05.000Z</updated>
<category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='News' label='News & Politics'/>
<category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/>
<category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='earth'/>
<category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='google'/>
<title type='text'>secret images of google earth</title>
<content type='html'>
<a href="http://www.youtube.com/categories_portal?c=25">News &amp; Politics</a></td></tr></tbody></table></div>
</content>
<link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/videos/dto3mB__0Io'/>
<link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=dto3mB__0Io'/>
<link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/videos/dto3mB__0Io/responses'/>
<link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/videos/dto3mB__0Io/related'/>
<author>
<name>anubismoon</name>
<uri>http://gdata.youtube.com/feeds/users/anubismoon</uri>
</author>
<media:group>
<media:title type='plain'>secret images of google earth</media:title>
<media:description type='plain'>
(If you all liked this video I made, watch the second part of this video in my video responses. Its called secret images of the book of the dead. ENJOY).
</media:description>
<media:keywords>google, earth</media:keywords>
<yt:duration seconds='160'/>
<media:category label='News & Politics' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>News</media:category>
<media:content url='http://www.youtube.com/v/dto3mB__0Io' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='160' yt:format='5'/>
<media:player url='http://www.youtube.com/watch?v=dto3mB__0Io'/>
<media:thumbnail url='http://img.youtube.com/vi/dto3mB__0Io/2.jpg' height='97' width='130' time='00:01:20'/>
<media:thumbnail url='http://img.youtube.com/vi/dto3mB__0Io/1.jpg' height='97' width='130' time='00:00:40'/>
<media:thumbnail url='http://img.youtube.com/vi/dto3mB__0Io/3.jpg' height='97' width='130' time='00:02:00'/>
<media:thumbnail url='http://img.youtube.com/vi/dto3mB__0Io/0.jpg' height='240' width='320' time='00:01:20'/>
</media:group>
<yt:statistics viewCount='793029'/>
<gd:rating min='1' max='5' numRaters='1544' average='4.44'/>
<gd:comments>
<gd:feedLink href='http://gdata.youtube.com/feeds/videos/dto3mB__0Io/comments'/>
</gd:comments>
</entry>