Hi Sue,
Looking at your code, you have this as the JavaScript initialisation;
Code:
new rsspausescroller("News", "pscroller1", "rssclass", 3000, "_new")
new rsspausescroller("http://mf.feeds.reuters.com/reuters/UKBankingFinancial", "pscroller2", "rssclass", 3000, "http://mf.feeds.reuters.com/reuters/UKBankingFinancial", "date+description")
Unfortunately, if you read the instructions in the demo, you need to define your own feed in the "scrollerbridge.php" file (both in the DD demo and John's SimplePie demo).
You should have a line in the "scrollerbridge.php" file that looks something like this;
Code:
"UKBankingFinancial" => "http://mf.feeds.reuters.com/reuters/UKBankingFinancial",
And then the JavaScript in the web page would look something like this;
Code:
new rsspausescroller("UKBankingFinancial", "pscroller2", "rssclass", 3000, "_new", "date+description")
Note the 1st parameter should be the name of the feed as defined in the "scrollerbridge.php" file (not the actual link) and the other highlighted parameter (the 5th) is how the feel link is opened; in a new page ("_new"), or in the same page ("")
Hope that helps
Bookmarks