read XML
Posted: Tue Aug 11, 2015 10:43 am
I would like to read all the nodes "title", present in the xml file,
thanks
Code: Select all
local list_title
on mouseUp
get url "http://www.ansa.it/sito/notizie/cronaca/cronaca_rss.xml"
put revCreateXMLTree( it, true, true, false) into tRSS_ANSA
repeat .....
put revXMLNodeContents(tRSS_ANSA, "rss/channel/item/title") & return after list_title
end repeat
put list_title
end mouseUp