Ah, I see the trouble. By the time I got around to testing for that problem, I somehow had left out marquees that didn't continue to move onmouseout. Anyways, all fixed. Clear your cache again and download the script again.
BTW, if the marquee is stopping on mouse out, both moveatleast and savedirection are meaningless. Also, if there is no background color, just skip it:
Code:
<script type="text/javascript">
marqueeInit({
uniqueid: 'art2',
direction: 'right',
style: { //style object for this marquee container (use quotes on both sides of the : as shown)
'width': '60%',
'height': '140px',
'border': '0px solid #111',
'margin': '0 auto'},
inc: 10, //speed - pixel increment for each iteration of this marquee's movement
mouse: 'cursor driven' //mouseover behavior ('pause' 'cursor driven' or false)
});
</script>
Bookmarks