for speed –
edit continuous-announcment-scroller.js; change number 10 (time in ms millisec) in this line:
setTimeout("cas_scroll();", 10);
for stop time –
edit continuous-announcment-scroller.js; change number 2000 in this line:
setTimeout("cas_scroll();", 2000);
to modify the plugin to stop on mouse-over and continue on mouse-out,
edit continuous-announcment-scroller.js; add t1c =
to this line:
t1c = setTimeout("cas_scroll();", 10);
and add t2c =
to this line:
t2c = setTimeout("cas_scroll();", 2000);
then edit continuous-announcement-scroller.php; and find (line 90):
$cas_height1 = $dis_num_height."px";
?>
<div style="padding-top:8px;padding-bottom:8px;">
change to:
$cas_height1 = $dis_num_height."px";
?>
<div style="padding-top:8px;padding-bottom:8px;" onMouseOver="clearTimeout(t1c);clearTimeout(t2c);" onMouseout="cas_scroll();">
hope this works ??
PS: great to see that you got the settings already ??