I made this include to read RSS files. It gets the info you want and returns it in an array. Im sure there are better or more scripts to do this but heres mine: Heres sample: This would get all the story titles on Digg The MsgBox only shows the 1st 5 though $Test1 = _RSSGetInfo("http://digg.com/rss/index.xml", "<title>", "</title>", 1) MsgBox(0, "Test", "Title 1: "&$Test1[1]&" Title 2: "&$Test1[2]&" Title 3: "&$Test1[3]&" Title 4: "&$Test1[4]&