I tried modifying the Kirupa photo-viewer to work more like a news ticker that scrolls through 4 to 6 news items (from xml) and shows a background image and corresponds to a small thumbnail numbered list so that if you missed the news article you wanted you could click back a number to retrieve that article. The idea is to click on the TEXT of the ticker/rss feed to link to another page.
Best example I can find is this:
The problem is I can’t get the dynamic text to work as a link.
I switched out:
//
//getURL statement
//
picture.onRelease = function() {
getURL(link[p], "_blank");
};
//
with:
//
//getURL statement
//
desc_txt.onRelease = function() {
getURL(link[p], "_blank");
};
//
which didn’t work.
So the question is does anyone know of a good tutorial that might explain this? I’m currently working through the Kirupa News Ticker tutorial which will be ok for now but I’d like to add images and some sort of call-back feature.
And forgive me if I have the terminology wrong (ticker, rss, ???) but hopefully my basic point is clear.
Thanks!