Yep, the adding of RSS feeds is done within scrollerbridge.php. This is explained on the DD script page. For example:
Code:
// Define your list of RSS URLs- "RSS_id"=> "URL to RSS feed"
$rsslist=array(
"cnn" => "http://rss.cnn.com/rss/cnn_topstories.rss",
"bbc" => "http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml",
"news.com" => "http://news.com.com/2547-1_3-0-5.xml",
"slashdot" => "http://rss.slashdot.org/Slashdot/slashdot",
"dynamicdrive" => "http://www.dynamicdrive.com/export.php?type=new",
"myfeed" => "http://www.mysite.com/news.rss",
);
Then, to display the feed "myfeed", your initalization code on your page may look like:
Code:
new rsspausescroller("myfeed", "pscroller1", "rssclass", 3000, "_new", "description+date")
Bookmarks