Click to See Complete Forum and Search --> : adding links to this


chris9902
08-20-2003, 06:19 AM
i got that Mikescroll script and it is really good but how do i add links to the scrolling text.

var myScroller1 = new Scroller(0, 0, 160, 140, 0, 3); //(xpos, ypos, width, height, border, padding)
myScroller1.setColors("#000000", "#f4f4f4", "#000000"); //(fgcolor, bgcolor, bdcolor)
myScroller1.setFont("Verdana,Arial,Helvetica", 2);
myScroller1.addItem("<b>Headline</b><BR>this would be text 1");
myScroller1.addItem("<b>Headline</b><BR>this would be text 2");
myScroller1.addItem("<b>Headline</b><BR>this would be text 3");
myScroller1.addItem("<b>Headline</b><BR>this would be text 4");
myScroller1.addItem("<b>Headline</b><BR>this would be text 5");

requestcode
08-20-2003, 06:32 AM
Try this:
myScroller1.addItem("<a href='sompage.html'>Click here</a>");